Skip to content

Commit

Permalink
Update TagBot.yml and drop Windows CI (#64)
Browse files Browse the repository at this point in the history
* Update TagBot.yml

* Update TagBot.yml

* drop windows from CI

* Update ci.yml

* Update ci.yml
  • Loading branch information
palday authored May 6, 2023
1 parent 2d2653b commit 3a837f6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ on:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "14"
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Expand All @@ -12,5 +28,6 @@ jobs:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
lookback: 14

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ jobs:
# - '1.6'
- '1'
R:
- '4.0'
- '4'
os:
# - ubuntu-latest # linux currently doesn't work because of lib issues
- macOS-latest
- windows-latest
# - windows-latest # Windows compiles *everything* and takes far too long
arch:
- x64
steps:
- name: Checkout
uses: actions/checkout@v2
- name: R Setup
uses: r-lib/actions/setup-r@v1
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.R }}
- name: R Dependencies
Expand Down

0 comments on commit 3a837f6

Please sign in to comment.