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 d2b2fca commit 580aa68Copy full SHA for 580aa68
.github/workflows/main.yml
@@ -1,6 +1,11 @@
1
-name: Quality
+name: Test / Quality
2
3
-on: push
+on:
4
+ push:
5
+ branches: [main]
6
+
7
+ pull_request:
8
+ types: [opened, reopened, edited]
9
10
jobs:
11
check:
.github/workflows/release.yml
@@ -0,0 +1,17 @@
+name: Release
+ release:
+ types: [published]
+jobs:
+ docs:
+ name: Trigger Documentation
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: "read"
14
15
+ steps:
16
+ - run: curl -sfL https://proxy.golang.org/github.com/${{ github.repository }}/@v/${{ github.ref_name }}.info
17
+ shell: bash
0 commit comments