Compare commits

...

2 Commits

Author SHA1 Message Date
Andrew Morgan
2e45ba3abf newsfile 2025-07-31 12:18:48 +01:00
Andrew Morgan
835ca51196 Continue "move labelled issues" workflow if issue already added 2025-07-31 12:15:41 +01:00
2 changed files with 5 additions and 0 deletions

View File

@@ -16,6 +16,10 @@ jobs:
with:
project-url: "https://github.com/orgs/matrix-org/projects/67"
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
# This action will error if the issue already exists on the project. Which is
# common as `X-Needs-Info` will often be added to issues that are already in
# the triage queue. Prevent the whole job from failing in this case.
continue-on-error: true
- name: Set status
env:
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}

1
changelog.d/18755.misc Normal file
View File

@@ -0,0 +1 @@
Prevent "Move labelled issues to correct projects" GitHub Actions workflow from failing when an issue is already on the project board.