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.
2 parents dfd64eb + da64b82 commit eb3491eCopy full SHA for eb3491e
.github/workflows/TagBot.yml
@@ -0,0 +1,15 @@
1
+name: TagBot
2
+on:
3
+ issue_comment:
4
+ types:
5
+ - created
6
+ workflow_dispatch:
7
+jobs:
8
+ TagBot:
9
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: JuliaRegistries/TagBot@v1
13
+ with:
14
+ token: ${{ secrets.GITHUB_TOKEN }}
15
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
- runs-on: [self-hosted]
+ runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
0 commit comments