Skip to content

Commit

Permalink
Update workflows to only reference "main" and not "master"
Browse files Browse the repository at this point in the history
  • Loading branch information
sjdemartini committed May 3, 2023
1 parent 7fbd349 commit fe09d63
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ name: dev workflow

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [master, main]
branches: [main]
pull_request:
branches: [master, main]
branches: [main]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: stage & preview workflow

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [master, main]
branches: [main]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: release & publish workflow

# Controls when the action will run.
on:
# Triggers the workflow on push events but only for the master branch
# Triggers the workflow on push events of version tags
push:
tags:
- "v*"
Expand Down

0 comments on commit fe09d63

Please sign in to comment.