Skip to content

Commit 435bce7

Browse files
enable push trigger for test-973 branch in workflow
1 parent 4593574 commit 435bce7

2 files changed

Lines changed: 22 additions & 3 deletions

File tree

.github/workflows/hello.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Hello
2+
3+
on:
4+
push:
5+
branches: [demo]
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v7
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v7
15+
with:
16+
python-version: '3.14'
17+
18+
- name: Run hello world
19+
run: python hello.py

.github/workflows/test-1302.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Validate mirror/mirror-token e2e
22

33
on:
4-
# push:
5-
# branches:
6-
# - test-973
4+
push:
5+
branches:
6+
- test-973
77
workflow_dispatch:
88

99
jobs:

0 commit comments

Comments
 (0)