Skip to content

Commit 288c4b6

Browse files
committed
update workflows
1 parent 7dbf638 commit 288c4b6

8 files changed

+33
-33
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
version: 2
22
updates:
33
# Keep npm dependencies up to date
4-
- package-ecosystem: "npm"
5-
directory: "/"
4+
- package-ecosystem: 'npm'
5+
directory: '/'
66
schedule:
7-
interval: "weekly"
8-
day: "monday"
9-
time: "08:00"
10-
timezone: "Etc/GMT"
11-
target-branch: "workflow/dependency-update"
7+
interval: 'weekly'
8+
day: 'monday'
9+
time: '08:00'
10+
timezone: 'Etc/GMT'
11+
target-branch: 'workflow/dependency-update'
1212
# Raise all npm pull requests with custom labels
1313
labels:
14-
- "workflow"
14+
- 'workflow'
1515
milestone: 1
16-

.github/workflows/issue-assigned-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
automate-project-columns:
9-
name: "Automate Project Columns"
9+
name: 'Automate Project Columns'
1010
runs-on: ubuntu-latest
1111

1212
steps:

.github/workflows/issue-open-workflows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
automate-project-columns:
9-
name: "Automate Project Columns"
9+
name: 'Automate Project Columns'
1010
runs-on: ubuntu-latest
1111

1212
steps:
@@ -18,7 +18,7 @@ jobs:
1818
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
1919

2020
milestone-binder:
21-
name: "Milestone Binder"
21+
name: 'Milestone Binder'
2222
runs-on: ubuntu-latest
2323

2424
steps:

.github/workflows/on-push-tags.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ on:
77

88
jobs:
99
tagged-release:
10-
name: "Tagged Release"
11-
runs-on: "ubuntu-latest"
10+
name: 'Tagged Release'
11+
runs-on: 'ubuntu-latest'
1212

1313
steps:
1414
- name: Generate Release From Tag
15-
uses: "marvinpinto/action-automatic-releases@latest"
15+
uses: 'marvinpinto/action-automatic-releases@latest'
1616
with:
17-
repo_token: "${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}"
17+
repo_token: '${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}'
1818
prerelease: false
1919

2020
publish-npm:
21-
name: "Publish to NPM"
21+
name: 'Publish to NPM'
2222
runs-on: ubuntu-latest
2323

2424
steps:
@@ -46,7 +46,7 @@ jobs:
4646
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
4747

4848
publish-gpr:
49-
name: "Publish to GitHub"
49+
name: 'Publish to GitHub'
5050
runs-on: ubuntu-latest
5151

5252
steps:

.github/workflows/on-version-update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55
paths-ignore:
66
- 'package.json'
77
branches:
8-
- "master"
8+
- 'master'
99

1010
jobs:
1111
bump-version:
12-
name: "Update Version"
12+
name: 'Update Version'
1313
runs-on: ubuntu-latest
1414

1515
steps:
@@ -30,7 +30,7 @@ jobs:
3030
token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
3131

3232
create-version-update-pr:
33-
name: "Create Version Update PR"
33+
name: 'Create Version Update PR'
3434
runs-on: ubuntu-latest
3535
needs: bump-version
3636

.github/workflows/pr-labeled-at-develop-workflows.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ on:
99

1010
jobs:
1111
auto-merge:
12-
name: "Auto Merge"
12+
name: 'Auto Merge'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: automerge
16-
uses: "pascalgn/[email protected]"
16+
uses: 'pascalgn/[email protected]'
1717
env:
18-
GITHUB_TOKEN: "${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}"
19-
MERGE_LABELS: "workflow"
20-
MERGE_COMMIT_MESSAGE: "Auto merge for PR with workflow label"
21-
MERGE_FORKS: "false"
22-
MERGE_RETRY_SLEEP: "60000"
18+
GITHUB_TOKEN: '${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}'
19+
MERGE_LABELS: 'workflow'
20+
MERGE_COMMIT_MESSAGE: 'Auto merge for PR with workflow label'
21+
MERGE_FORKS: 'false'
22+
MERGE_RETRY_SLEEP: '60000'

.github/workflows/pr-open-to-demos-and-dependency-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
reset-demo-from-develop:
12-
name: "Reset Demo From Develop"
12+
name: 'Reset Demo From Develop'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Repo

.github/workflows/pr-open-workflows.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ name: PR Open Workflows
33
on:
44
pull_request:
55
types: [ opened ]
6+
branches-ignore: workflow/dependency-update
67

78
jobs:
89
pr-labeler:
9-
name: "Add Label to PR"
10+
name: 'Add Label to PR'
1011
runs-on: ubuntu-latest
1112

1213
steps:
@@ -16,7 +17,7 @@ jobs:
1617
GITHUB_TOKEN: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
1718

1819
automate-project-columns:
19-
name: "Automate Project Columns"
20+
name: 'Automate Project Columns'
2021
runs-on: ubuntu-latest
2122

2223
steps:
@@ -28,7 +29,7 @@ jobs:
2829
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
2930

3031
milestone-binder:
31-
name: "Milestone Binder"
32+
name: 'Milestone Binder'
3233
runs-on: ubuntu-latest
3334

3435
steps:
@@ -38,7 +39,7 @@ jobs:
3839
github-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
3940

4041
continuous-integration:
41-
name: "Npm Continuous Integration"
42+
name: 'Npm Continuous Integration'
4243
runs-on: ubuntu-latest
4344

4445
steps:

0 commit comments

Comments
 (0)