Skip to content

Commit

Permalink
ci: remove '2' from workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 27, 2024
1 parent 653b12c commit 84dc947
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pushDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DO NOT MODIFY IT BY HAND. Instead, modify the source *.wac.ts file(s)
# and run "github-actions-wac build" (or "ghawac build") to regenerate this file.
# For more information, run "github-actions-wac --help".
name: Dev Branch - Push 2
name: Dev Branch - Push
'on':
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pushNext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DO NOT MODIFY IT BY HAND. Instead, modify the source *.wac.ts file(s)
# and run "github-actions-wac build" (or "ghawac build") to regenerate this file.
# For more information, run "github-actions-wac --help".
name: Next Branch - Push 2
name: Next Branch - Push
'on':
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wac/push.wac.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ const createPushWorkflow = (branchName: string) => {
const ucFirstBranchName = branchName.charAt(0).toUpperCase() + branchName.slice(1);

const workflow = createWorkflow({
name: `${ucFirstBranchName} Branch - Push 2`,
name: `${ucFirstBranchName} Branch - Push`,
on: { push: { branches: [branchName] } },
jobs: {
validateWorkflows: createValidateWorkflowsJob(),
Expand Down

0 comments on commit 84dc947

Please sign in to comment.