File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ branches :
7+ - main
8+
9+ permissions :
10+ contents : read
11+
12+ jobs :
13+ release :
14+ permissions :
15+ actions : read
16+ id-token : write
17+ contents : write
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v4
21+ with :
22+ token : ${{ secrets.REPO_ACCESS_TOKEN }}
23+ - name : Run release actions
24+ run : echo "Run release logic here"
Original file line number Diff line number Diff line change 1+ name : Test Increment
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ branches :
7+ - main
8+
9+ jobs :
10+ test :
11+ name : Test
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout
15+ uses : actions/checkout@v4
16+ with :
17+ token : ${{ secrets.REPO_ACCESS_TOKEN }}
18+ - name : Perform test
19+ run : echo "Test logic here"
You can’t perform that action at this time.
0 commit comments