Skip to content

Commit

Permalink
Consistently use single-quotes around value of name properties
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Oct 17, 2024
1 parent a9aee3a commit ae735a1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Compile
name: 'Compile'
permissions: {}
on:
workflow_call:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/experiments.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Experiments
name: 'Experiments'
permissions: {}
on:
workflow_call:
jobs:
one:
name: "Ternary"
name: 'Ternary'
runs-on: ubuntu-latest
steps:
- name: "echo github.ref"
- name: 'echo github.ref'
run: echo ${{ github.ref }}
- name: "echo ternary value"
- name: 'echo ternary value'
run: echo ${{ startsWith(github.ref, 'refs/tags/') && 'release' || 'publish' }}
4 changes: 2 additions & 2 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Manual
name: 'Manual'
permissions: {}
on:
workflow_call:
Expand All @@ -9,7 +9,7 @@ on:
required: true
jobs:
manual:
name: "Generate manual"
name: 'Generate manual'
runs-on: ubuntu-latest
steps:
- name: 'Install Emacs'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Readme
name: 'Readme'
permissions: {}
on:
workflow_call:
Expand All @@ -9,7 +9,7 @@ on:
required: true
jobs:
manual:
name: "Export readme"
name: 'Export readme'
runs-on: ubuntu-latest
steps:
- name: 'Install Emacs'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Statistics
name: 'Statistics'
permissions: {}
on:
workflow_call:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: 'Test'
permissions: {}
on:
workflow_call:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
matrix:
emacs: ${{ fromJson(needs.matrix.outputs.matrix) }}
steps:
- name: Configure git
- name: 'Configure git'
run: |
git config --global user.name "A U Thor"
git config --global user.email [email protected]
Expand Down

0 comments on commit ae735a1

Please sign in to comment.