Skip to content

Commit ac7f7a4

Browse files
committed
Testing phase1
1 parent f1160d2 commit ac7f7a4

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/validate.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
on:
3+
pull_request:
4+
# types: [opened, synchronize, reopened, labeled, unlabeled]
5+
types: [labeled]
6+
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
13+
jobs:
14+
validate:
15+
name: 'Validate Changed Packages'
16+
if: contains(github.event.pull_request.labels.*.name, 'full validation')
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v4
22+
with:
23+
fetch-depth: 0
24+
25+
- name: Run Validation Script
26+
run: |
27+
echo "Running validation because 'full validation' label was added"
28+
# Add your validation logic here (e.g., linting, testing)

0 commit comments

Comments
 (0)