Skip to content

Commit

Permalink
Update add_to_project.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vzarytovskii authored Oct 26, 2022
1 parent 57ebc9a commit b1c82d7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/add_to_project.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Add all issues to F# project, assign milestone and labels
name: Add all issues and PRs to F# project, assign milestone and labels

on:
issues:
types:
- opened
- transferred
pull_request:
types:
- opened

permissions:
issues: write
Expand Down Expand Up @@ -38,6 +41,7 @@ jobs:
github-token: ${{ secrets.REPO_PROJECT_PAT }}
apply-label:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/github-script@v6
with:
Expand All @@ -50,6 +54,7 @@ jobs:
})
apply-milestone:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/github-script@v6
with:
Expand Down

0 comments on commit b1c82d7

Please sign in to comment.