Skip to content

Commit

Permalink
Merge pull request #1 from josstn/NOTmain
Browse files Browse the repository at this point in the history
Merge til main1
  • Loading branch information
josstn authored Aug 23, 2024
2 parents eb4dbb6 + eba4add commit e337c88
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,40 @@ jobs:
env:
NAME: "${{ github.ref_name }}"

test4:
name: Test4
permissions:
contents: read
if: |
${{ github.ref_name == github.event.repository.default_branch }}
runs-on: ubuntu-latest
steps:
- shell: bash
run: |
echo 'Test4 ran'
test5:
name: Test5
permissions:
contents: read
if: ${{ github.ref_name == github.event.repository.default_branch }}
runs-on: ubuntu-latest
steps:
- shell: bash
run: |
echo 'Test5 ran'
test6:
name: Test6
permissions:
contents: read
if: ${{ github.ref_name == 'main' }}
runs-on: ubuntu-latest
steps:
- shell: bash
run: |
echo 'Test6 ran'
1 change: 1 addition & 0 deletions text.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Just some text

0 comments on commit e337c88

Please sign in to comment.