We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f7037 commit df8fd14Copy full SHA for df8fd14
.github/workflows/add-to-project.yml
@@ -0,0 +1,18 @@
1
+name: Automatically add Dependency Upgrades to project
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - labeled
7
8
+jobs:
9
+ add-to-project:
10
+ name: Add Dependency Upgrade PR to project
11
+ runs-on: ubuntu-latest
12
+ if: ${{ github.actor == 'dependabot[bot]' }}
13
+ steps:
14
+ - uses: actions/add-to-project@main
15
+ with:
16
+ project-url: https://github.com/orgs/AxonFramework/projects/2
17
+ github-token: ${{ secrets.ADD_PROJECT_TOKEN }}
18
+ labeled: 'Type: Dependency Upgrade'
0 commit comments