Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Sep 25, 2021
1 parent 7dbf638 commit 288c4b6
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 33 deletions.
17 changes: 8 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
version: 2
updates:
# Keep npm dependencies up to date
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: "weekly"
day: "monday"
time: "08:00"
timezone: "Etc/GMT"
target-branch: "workflow/dependency-update"
interval: 'weekly'
day: 'monday'
time: '08:00'
timezone: 'Etc/GMT'
target-branch: 'workflow/dependency-update'
# Raise all npm pull requests with custom labels
labels:
- "workflow"
- 'workflow'
milestone: 1

2 changes: 1 addition & 1 deletion .github/workflows/issue-assigned-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
automate-project-columns:
name: "Automate Project Columns"
name: 'Automate Project Columns'
runs-on: ubuntu-latest

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-open-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
automate-project-columns:
name: "Automate Project Columns"
name: 'Automate Project Columns'
runs-on: ubuntu-latest

steps:
Expand All @@ -18,7 +18,7 @@ jobs:
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

milestone-binder:
name: "Milestone Binder"
name: 'Milestone Binder'
runs-on: ubuntu-latest

steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/on-push-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ on:

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
name: 'Tagged Release'
runs-on: 'ubuntu-latest'

steps:
- name: Generate Release From Tag
uses: "marvinpinto/action-automatic-releases@latest"
uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: "${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}"
repo_token: '${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}'
prerelease: false

publish-npm:
name: "Publish to NPM"
name: 'Publish to NPM'
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

publish-gpr:
name: "Publish to GitHub"
name: 'Publish to GitHub'
runs-on: ubuntu-latest

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on-version-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
paths-ignore:
- 'package.json'
branches:
- "master"
- 'master'

jobs:
bump-version:
name: "Update Version"
name: 'Update Version'
runs-on: ubuntu-latest

steps:
Expand All @@ -30,7 +30,7 @@ jobs:
token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

create-version-update-pr:
name: "Create Version Update PR"
name: 'Create Version Update PR'
runs-on: ubuntu-latest
needs: bump-version

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr-labeled-at-develop-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ on:

jobs:
auto-merge:
name: "Auto Merge"
name: 'Auto Merge'
runs-on: ubuntu-latest
steps:
- name: automerge
uses: "pascalgn/[email protected]"
uses: 'pascalgn/[email protected]'
env:
GITHUB_TOKEN: "${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}"
MERGE_LABELS: "workflow"
MERGE_COMMIT_MESSAGE: "Auto merge for PR with workflow label"
MERGE_FORKS: "false"
MERGE_RETRY_SLEEP: "60000"
GITHUB_TOKEN: '${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}'
MERGE_LABELS: 'workflow'
MERGE_COMMIT_MESSAGE: 'Auto merge for PR with workflow label'
MERGE_FORKS: 'false'
MERGE_RETRY_SLEEP: '60000'
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
reset-demo-from-develop:
name: "Reset Demo From Develop"
name: 'Reset Demo From Develop'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/pr-open-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name: PR Open Workflows
on:
pull_request:
types: [ opened ]
branches-ignore: workflow/dependency-update

jobs:
pr-labeler:
name: "Add Label to PR"
name: 'Add Label to PR'
runs-on: ubuntu-latest

steps:
Expand All @@ -16,7 +17,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

automate-project-columns:
name: "Automate Project Columns"
name: 'Automate Project Columns'
runs-on: ubuntu-latest

steps:
Expand All @@ -28,7 +29,7 @@ jobs:
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

milestone-binder:
name: "Milestone Binder"
name: 'Milestone Binder'
runs-on: ubuntu-latest

steps:
Expand All @@ -38,7 +39,7 @@ jobs:
github-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

continuous-integration:
name: "Npm Continuous Integration"
name: 'Npm Continuous Integration'
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 288c4b6

Please sign in to comment.