Skip to content

Commit

Permalink
Create issues-to-ado.yml (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjyetman authored Apr 27, 2024
1 parent 31ac507 commit a072b31
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/issues-to-ado.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
# This example file will enable actions that trigger on created or modified GitHub issues.
#
# Note the @main in `uses:` on the last line. This will call the latest version of the workflow from the `main` branch in the RMI-PACTA/actions repo.
# You can also specify a tag from that repo, or a commit SHA to pin action versions.
on:
issues:
types:
[opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]
issue_comment:
types: [created, edited, deleted]

name: GH issues

permissions:
issues: write
pull-requests: write

jobs:
issues:
name: Run issues workflows
uses: RMI-PACTA/actions/.github/workflows/issues.yml@main
with:
ado_area_path: "2DegreesInvesting\\GitHub Issues"
secrets:
ADO_TOKEN: ${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}

0 comments on commit a072b31

Please sign in to comment.