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 e28437d commit 3a66112Copy full SHA for 3a66112
.github/workflows/project-automation.yml
@@ -0,0 +1,27 @@
1
+name: "Automation: Update GH Project"
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, reopened]
6
+ issues:
7
8
9
+jobs:
10
+ add-to-project:
11
+ name: Add item to "Python SDK" project
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/[email protected]
15
+ with:
16
+ project-url: https://github.com/orgs/getsentry/projects/235
17
+ github-token: ${{ secrets.GH_PROJECT_AUTOMATION }}
18
19
+ add-label:
20
+ name: Add POTel label if needed
21
22
+ if: github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'potel-base'
23
24
+ - uses: actions-ecosystem/action-add-labels@v1
25
26
+ labels: "Project: POTel"
27
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments