Skip to content

Commit

Permalink
Add new file
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed Nov 15, 2023
1 parent 701e00d commit 4bf9357
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/revsys.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Add to REVSYS Backlog

on:
issues:
types:
- labeled
pull_request:
types:
- labeled

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
if: ${{ github.event.issue.label.name == 'revsys' }}
steps:
- uses: 1password/load-secrets-action@v1
with:
export-env: true
env:
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
REVSYS_PROJECT_URL: "op://GitHub Actions/REVSYS Project/url"
REVSYS_PROJECT_PAT: "op://GitHub Actions/REVSYS Project/PAT"

- uses: actions/[email protected]
with:
project-url: ${{ env.REVSYS_PROJECT_URL }}
github-token: ${{ env.REVSYS_PROJECT_PAT }}

0 comments on commit 4bf9357

Please sign in to comment.