mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
fd9b14a75e
GitHub bug means that GITHUB_TOKEN doesn't work according to documentation at https://docs.github.com/en/actions/reference/authentication-in-a-workflow#permissions-for-the-github_token because it doesn't have the right permissions for moving stuff to a project board. The automation throws this error: Error: Resource not accessible by integration Use our own generated token for now. Signed-off-by: Ekaterina Gerasimova <kittykat3756@gmail.com>
16 lines
344 B
YAML
16 lines
344 B
YAML
name: Move new issues into Issue triage board
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
automate-project-columns:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@v0.8.1
|
|
with:
|
|
project: Issue triage
|
|
column: Incoming
|
|
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|