Skip to content

Commit

Permalink
ci: Bump integrate action
Browse files Browse the repository at this point in the history
Signed-off-by: Nils Wistoff <[email protected]>
  • Loading branch information
niwis committed Mar 7, 2024
1 parent 33c8ef8 commit 20f026d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,23 @@ jobs:
timeout-minutes: 200
if: github.repository == 'pulp-platform/cva6'
steps:
- name: set vars
id: vars
shell: bash
run: |
if [[ "${{ github.event_name }}" == "pull_request_target" ]]; then
head_ref=${{ github.event.pull_request.head.sha }}
else
head_ref=$GITHUB_SHA
fi
echo "head_ref=$head_ref" >> $GITHUB_OUTPUT
- name: Integrate into cheshire
uses: pulp-platform/pulp-actions/integrate@v2.2.0
uses: pulp-platform/pulp-actions/integrate@nw/integrate
with:
ip-name: cva6
org: pulp-platform
repo: cheshire
base-ref: cva6/pulp-v1.0.0-rel
token: ${{ secrets.CHESHIRE_TOKEN }}
lifetime: 14
head-ref: ${{ steps.vars.outputs.head_ref }}

0 comments on commit 20f026d

Please sign in to comment.