js-waku/.github/workflows/add-action-project.yml

16 lines
403 B
YAML
Raw Normal View History

2021-04-28 02:38:58 +00:00
name: Add new issues to js-waku project board
on: [issues]
2021-04-26 10:34:11 +00:00
jobs:
2021-04-28 02:38:58 +00:00
add-issue:
2021-04-26 10:34:11 +00:00
runs-on: ubuntu-latest
steps:
2021-04-28 02:38:58 +00:00
- name: Move new issues into New
if: github.event_name == 'issues' && github.event.action == 'opened'
uses: alex-page/automate-project-columns@master
with:
project: js-waku
column: New
repo-token: ${{ secrets.GITHUB_TOKEN }}