Skip to content

Commit 7ad0d0c

Browse files
committed
Merge branch 'main' into customDaoFix
2 parents 7429ab9 + 1825a2b commit 7ad0d0c

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/buildAndPublish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ jobs:
7777
uses: actions/checkout@v4
7878
with:
7979
fetch-depth: 0
80-
# ref: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.head_branch || github.ref_name }}
8180
ref: ${{ github.ref_name }}
8281

8382
- name: "Set Git Config"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: On PULL REQUEST
2+
on:
3+
pull_request:
4+
jobs:
5+
staticCodeValidation:
6+
name: Validation jobs
7+
uses: navikt/sf-platform/.github/workflows/ciStaticCodeValidation.yml@main
8+
permissions:
9+
contents: read
10+
buildAndPublish:
11+
name: Build Jobs
12+
needs: staticCodeValidation
13+
uses: navikt/sf-platform/.github/workflows/buildAndPublish.yml@main
14+
permissions:
15+
contents: write
16+
packages: write
17+
secrets:
18+
SF_DEVHUB_URL: ${{ secrets.SF_DEVHUB_URL }}

0 commit comments

Comments
 (0)