File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments