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 14e5d30 commit d450d27Copy full SHA for d450d27
.github/workflows/main.yml
@@ -0,0 +1,29 @@
1
+on:
2
+ issues:
3
+ types: [ opened, reopened ]
4
+
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout repo
11
+ uses: actions/checkout@v2
12
13
+ - name: Python stuff
14
+ uses: actions/setup-python@v2
15
+ with:
16
+ python-version: 3.8
17
18
+ - name: Checkout mbed-os-scripts repo
19
20
21
+ repository: ARMmbed/mbed-os-ci-scripts
22
+ token: ${{ secrets.ISSUE_TRIAGING_PERMS }}
23
+ path: scripts
24
+ ref: triage_test
25
26
+ - name: Run the script
27
+ run: |
28
+ python -m pip install pygithub
29
+ python ./scripts/issue_triaging/__init__.py -i ${{github.event.issue.number}} -r ${{ github.event.repository.name }} -t ${{ secrets.ISSUE_TRIAGING_PERMS }}
0 commit comments