-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use GH-to-ADO instead of GH projects (#26)
Relates to RMI-PACTA/r2dii.data#339
- Loading branch information
Showing
2 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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\\Repositories that jdhoffa maintains" | ||
secrets: | ||
ADO_TOKEN: ${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }} |