Skip to content

Commit 80518ce

Browse files
committed
🔧 fix(workflow): remove commented-out lines and standardize branch patterns in YAML files
1 parent 39836af commit 80518ce

2 files changed

Lines changed: 51 additions & 21 deletions

File tree

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,48 @@
1-
#
21
env:
32
ACTIONS_STEP_DEBUG: true
43
ACTIONS_RUNNER_DEBUG: true
54
RUN_TEST: 0
65
RUN_BUILD: 0
76
RUN_LINT: 0
8-
7+
98
on:
109
workflow_dispatch:
10+
1111
push:
1212
branches:
1313
- main
1414
- stage
15-
- feature/**
16-
- bugfix/**
17-
- fix/**
18-
- hotfix/**
19-
- release/**
20-
- dependabot/**
21-
- renovate/**
22-
- chore/**
23-
- test/**
15+
- 'feature/**'
16+
- 'bugfix/**'
17+
- 'fix/**'
18+
- 'hotfix/**'
19+
- 'release/**'
20+
- 'dependabot/**'
21+
- 'renovate/**'
22+
- 'chore/**'
23+
- 'test/**'
24+
pull_request:
25+
types: [labeled, synchronize, opened, reopened, ready_for_review]
26+
branches:
27+
- main
28+
- stage
29+
- 'feature/**'
30+
- 'bugfix/**'
31+
- 'fix/**'
32+
- 'hotfix/**'
33+
- 'release/**'
34+
- 'dependabot/**'
35+
- 'renovate/**'
36+
- 'chore/**'
37+
- 'test/**'
2438

2539
jobs:
2640
call-auto-merge:
2741
# uses: ./.github/workflows/auto-merge.yml
2842
uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@main
43+
# uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@v1
2944
# uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@38038641148ab8eaa7c9be80d9041a6c8c80641e
3045
# secrets:
3146
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3247

48+
Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#
21
env:
32
ACTIONS_STEP_DEBUG: true
43
ACTIONS_RUNNER_DEBUG: true
@@ -12,20 +11,35 @@ on:
1211
branches:
1312
- main
1413
- stage
15-
- feature/**
16-
- bugfix/**
17-
- fix/**
18-
- hotfix/**
19-
- release/**
20-
- dependabot/**
21-
- renovate/**
22-
- chore/**
23-
- test/**
14+
- 'feature/**'
15+
- 'bugfix/**'
16+
- 'fix/**'
17+
- 'hotfix/**'
18+
- 'release/**'
19+
- 'dependabot/**'
20+
- 'renovate/**'
21+
- 'chore/**'
22+
- 'test/**'
23+
pull_request:
24+
branches:
25+
- main
26+
- stage
27+
- 'feature/**'
28+
- 'bugfix/**'
29+
- 'fix/**'
30+
- 'hotfix/**'
31+
- 'release/**'
32+
- 'dependabot/**'
33+
- 'renovate/**'
34+
- 'chore/**'
35+
- 'test/**'
2436

2537
jobs:
2638
call-ci-release-sync:
2739
# uses: ./.github/workflows/ci-semantic-release-sync.yml
40+
# uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@v1
2841
uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@main
2942
# uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@38038641148ab8eaa7c9be80d9041a6c8c80641e
3043
# No secrets block needed for GITHUB_TOKEN
3144
# No additional changes required
45+

0 commit comments

Comments
 (0)