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 357b749 commit c7762cdCopy full SHA for c7762cd
.github/workflows/triage_labelled.yml
@@ -16,6 +16,10 @@ jobs:
16
with:
17
project-url: "https://github.com/orgs/matrix-org/projects/67"
18
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
19
+ # This action will error if the issue already exists on the project. Which is
20
+ # common as `X-Needs-Info` will often be added to issues that are already in
21
+ # the triage queue. Prevent the whole job from failing in this case.
22
+ continue-on-error: true
23
- name: Set status
24
env:
25
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
changelog.d/18755.misc
@@ -0,0 +1 @@
1
+Prevent "Move labelled issues to correct projects" GitHub Actions workflow from failing when an issue is already on the project board.
0 commit comments