Skip to content

I have a guess

I have a guess #29

Workflow file for this run

name: Automate Roadmap

Check failure on line 1 in .github/workflows/AddToRoadmap.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/AddToRoadmap.yml

Invalid workflow file

(Line: 25, Col: 9): Unexpected value 'permissions', (Line: 34, Col: 9): Unexpected value 'permissions'
on:
issues:
types:
- opened
pull_request:
branches:
- develop
jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: if_issue
if: github.event.issue
permissions: read-all|write-all
uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: SS3D Roadmap
column: Backlog
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: if_pr
if: github.event.pull_request
permissions: read-all|write-all
uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: SS3D Roadmap
column: In Progress
repo-token: ${{ secrets.GITHUB_TOKEN }}