Skip to content

Commit 8c0a129

Browse files
committed
Merge remote-tracking branch 'origin/main' into hm/bump-fvm
2 parents 538bf58 + 96a2ac2 commit 8c0a129

4 files changed

+12
-2
lines changed

.github/DOCKER_ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ labels: ["Bug"]
55

66
## Description
77

8-
Latest Docker check failed. Please [check the logs](https://github.com/ChainSafe/forest/actions/workflows/dockerfile-check.yml) for more information.
8+
Latest Docker check failed. Please [check the logs]({{ env.WORKFLOW_URL }}) for more information.

.github/SNAPSHOT_PARITY_ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ labels: ["Bug"]
55

66
## Description
77

8-
Latest snapshot parity test failed. Please [check the logs](https://github.com/ChainSafe/forest/actions/workflows/snapshot-parity.yml) for more information.
8+
Latest snapshot parity test failed. Please [check the logs]({{ env.WORKFLOW_URL }}) for more information.

.github/workflows/dockerfile-check.yml

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
- run: |
1616
docker build -t forest-test .
1717
docker run --rm forest-test --version
18+
- name: Set WORKFLOW_URL
19+
run: |
20+
export WORKFLOW_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
21+
echo ${WORKFLOW_URL}
22+
echo "WORKFLOW_URL=${WORKFLOW_URL}" >> $GITHUB_ENV
1823
- uses: JasonEtco/create-an-issue@v2
1924
if: failure()
2025
env:

.github/workflows/snapshot-parity.yml

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
- name: Dump docker logs
1717
if: always()
1818
uses: jwalton/gh-docker-logs@v2
19+
- name: Set WORKFLOW_URL
20+
run: |
21+
export WORKFLOW_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
22+
echo ${WORKFLOW_URL}
23+
echo "WORKFLOW_URL=${WORKFLOW_URL}" >> $GITHUB_ENV
1924
- uses: JasonEtco/create-an-issue@v2
2025
if: failure()
2126
env:

0 commit comments

Comments
 (0)