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 f7903b5 commit 83eb596Copy full SHA for 83eb596
.github/workflows/gate.yml
@@ -0,0 +1,11 @@
1
+name: gate
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ gate:
6
+ name: Gate
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - run: bash <( wget -qO- https://raw.githubusercontent.com/MATF-Software-Verification/VS-project-ci/main/gate )
11
.github/workflows/tickets.yml
@@ -0,0 +1,20 @@
+name: tickets
+on: [push, issues]
+ tickets:
+ name: Tickets
+ - name: Tickets
+ id: tickets
+ uses: lee-dohm/select-matching-issues@v1
12
+ with:
13
+ format: raw
14
+ query: 'is:open'
15
+ token: ${{ github.token }}
16
+ - name: Report issues
17
+ run: |
18
+ echo "=== Open issues ==="
19
+ grep 'http' ${{ steps.tickets.outputs.path }} && exit 1 || exit 0
20
0 commit comments