Skip to content

Commit caf7e1f

Browse files
Antony BaileyAntony Bailey
authored andcommitted
tidy github workflows
1 parent 47d502c commit caf7e1f

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "pip" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: pip # See documentation for possible values
9+
directory: / # Location of package manifests
1010
schedule:
11-
interval: "weekly"
11+
interval: weekly
1212
open-pull-requests-limit: 10
1313
assignees:
14-
- "yourusername"
14+
- parttimelegend
1515
labels:
16-
- "dependencies"
17-
- "python"
16+
- dependencies
17+
- python
1818

19-
- package-ecosystem: "github-actions"
20-
directory: "/"
19+
- package-ecosystem: github-actions
20+
directory: /
2121
schedule:
22-
interval: "weekly"
22+
interval: weekly
2323
open-pull-requests-limit: 5
2424
labels:
25-
- "dependencies"
26-
- "github_actions"
25+
- dependencies
26+
- github_actions

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: Python package
44

55
on:
66
push:
7-
branches: [ "master" ]
7+
branches: [ master"]
88
pull_request:
9-
branches: [ "master" ]
9+
branches: [ master ]
1010

1111
jobs:
1212
build:

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.x'
22+
python-version: 3.x
2323

2424
- name: Install dependencies
2525
run: |

.github/workflows/size-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: size-label
11-
uses: "pascalgn/size-label-action@v0.5.5"
11+
uses: pascalgn/size-label-action@v0.5.5
1212
env:
1313
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/stale.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Mark stale issues and pull requests
77

88
on:
99
schedule:
10-
- cron: '29 9 * * *'
10+
- cron: 29 9 * * *
1111

1212
jobs:
1313
stale:
@@ -16,6 +16,7 @@ jobs:
1616
permissions:
1717
issues: write
1818
pull-requests: write
19+
contents: none
1920

2021
steps:
2122
- uses: actions/stale@v9

0 commit comments

Comments
 (0)