1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-17 21:22:10 +00:00
trezor-firmware/.github/workflows/project_automation.yml
2022-03-30 15:17:16 +02:00

30 lines
968 B
YAML

name: Add to GitHub Project
on: [issues, pull_request]
permissions:
contents: read
pull-requests: write
issues: write
repository-projects: write
jobs:
gh-automate-projects:
runs-on: ubuntu-latest
steps:
- name: Add new issue to the Backlog 🗂 project board
if: github.event_name == 'issues' && github.event.action == 'opened'
run: |
gh issue edit $ISSUE --add-project "Backlog 🗂"
gh issue edit $ISSUE --add-project "Issues Firmware"
env:
ISSUE: ${{github.event.issue.html_url}}
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
- name: Add new pull request to the Pull Requests project board
if: github.event_name == 'pull_request' && github.event.action == 'opened'
run: gh pr edit $PULL_REQUEST --add-project "Pull Requests"
env:
PULL_REQUEST: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}