Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/LabelCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: Labels

permissions:
contents: read

on:
pull_request:
types: [labeled, unlabeled, opened, reopened, edited, synchronize]

jobs:
enforce-labels:
name: Check for blocking labels
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/PrAssignee.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: PR Assignee

on:
# Important security note: Do NOT use `actions/checkout`
# or any other method for checking out the pull request's source code.
Expand All @@ -25,7 +26,7 @@ permissions:

jobs:
pr-assignee:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: ${{ github.event.pull_request.draft != true }}
steps:
# Important security note: As discussed above, do NOT use `actions/checkout`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on: [pull_request]
jobs:
typos-check:
name: Check for new typos
runs-on: ubuntu-latest
runs-on: ubuntu-slim
timeout-minutes: 5
steps:
- name: Checkout the JuliaLang/julia repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Whitespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
whitespace:
name: Check whitespace
runs-on: ubuntu-latest
runs-on: ubuntu-slim
timeout-minutes: 2
steps:
- name: Checkout the JuliaLang/julia repository
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/cffconvert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,22 @@ name: cffconvert

on:
push:
branches:
branches: &branches
- 'master'
- 'release-*'
paths:
paths: &paths
- CITATION.cff
pull_request:
branches:
- 'master'
- 'release-*'
paths:
- CITATION.cff
branches: *branches
paths: *paths

permissions:
contents: read

jobs:
validate:
name: "validate"
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Check out a copy of the repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
Expand Down