Skip to content

Commit 64b5b75

Browse files
authored
Create called.yml
1 parent 1794e7b commit 64b5b75

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/called.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Called Test
2+
3+
on:
4+
workflow_call:
5+
6+
permissions:
7+
pull-requests: write
8+
contents: read
9+
10+
env:
11+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed for PR comments
12+
BUILD_BY: autobuild@vyos.net
13+
DEBIAN_MIRROR: http://deb.debian.org/debian/
14+
DEBIAN_SECURITY_MIRROR: http://deb.debian.org/debian-security
15+
VYOS_MIRROR: https://packages.vyos.net/repositories/current/
16+
17+
jobs:
18+
test:
19+
runs-on: ubuntu-24.04
20+
steps:
21+
- name: Test
22+
run: |
23+
echo "called branch circinus"
24+
- name: Clone vyos-1x source code
25+
uses: actions/checkout@v4
26+
with:
27+
path: packages/vyos-1x
28+
fetch-depth: 0
29+
ref: ${{ github.event.pull_request.head.sha }}
30+
repository: ${{ github.event.pull_request.head.repo.full_name }}
31+
submodules: true

0 commit comments

Comments
 (0)