Synapse responds with 200 OK to reaction removal, but requires ⪆ PT4H to remove the reaction.
#5868
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Move labelled issues to correct projects | |
| on: | |
| issues: | |
| types: [ labeled ] | |
| jobs: | |
| move_needs_info: | |
| runs-on: ubuntu-latest | |
| if: > | |
| contains(github.event.issue.labels.*.name, 'X-Needs-Info') | |
| permissions: | |
| contents: read | |
| env: | |
| # This token must have the following scopes: ["repo:public_repo", "admin:org->read:org", "user->read:user", "project"] | |
| GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | |
| PROJECT_OWNER: matrix-org | |
| # Backend issue triage board. | |
| # https://github.com/orgs/matrix-org/projects/67/views/1 | |
| PROJECT_NUMBER: 67 | |
| ISSUE_URL: ${{ github.event.issue.html_url }} | |
| # This field is case-sensitive. | |
| TARGET_STATUS: Needs info | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| # Only clone the script file we care about, instead of the whole repo. | |
| sparse-checkout: .ci/scripts/triage_labelled_issue.sh | |
| - name: Ensure issue exists on the board, then set Status | |
| run: .ci/scripts/triage_labelled_issue.sh |