We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d43bd1e commit 293763cCopy full SHA for 293763c
2 files changed
.github/workflows/check-broken-links.md
@@ -1,11 +1,3 @@
1
----
2
-title: Website Contains Broken Links
3
-labels:
4
- - content
5
-assignees:
6
- - lenderom
7
8
-
9
## Broken Links Detected
10
11
Broken Link Checker found broken links on https://fipguide.org
.github/workflows/linkcheck.yaml
@@ -53,9 +53,10 @@ jobs:
53
--exclude "www.trenitalia.fr"
54
- uses: actions/checkout@v3
55
if: failure()
56
- - uses: JasonEtco/create-an-issue@v2
57
- env:
58
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
- with:
60
- filename: ${{ env.ISSUE_TEMPLATE }}
+ - name: Reopen issue and add comment
61
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ gh issue reopen 1001 || true
62
+ gh issue comment 1001 --body-file $ISSUE_TEMPLATE
0 commit comments