Skip to content

Update SGX PSW from 2.18 to 2.20 #1930

Update SGX PSW from 2.18 to 2.20

Update SGX PSW from 2.18 to 2.20 #1930

Workflow file for this run

name: "Backport PR to LTS release branch(es)"
on:
pull_request_target:
branches:
- main
types:
- labeled
- closed
jobs:
backport:
name: Backport PR
runs-on: ubuntu-latest
if: |
github.event.pull_request.merged == true
&& contains(github.event.pull_request.labels.*.name, 'auto-backport')
&& (
(github.event.action == 'labeled' && github.event.label.name == 'auto-backport')
|| (github.event.action == 'closed')
)
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
# This is necessary as the repository is checked out to avoid merge conflicts
# on daily canary file
- name: Sets committed to GitHub Actions bot
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Local canary file always wins
run: |
git config --local include.path .gitconfig
git config --global merge.keeplocal.name "Always keep local file during merge"
git config --global merge.keeplocal.driver true
# Update backport action (https://github.com/sqren/backport/issues/391#issuecomment-1156355381)
- name: Backport Action
uses: sqren/backport-github-action@main
with:
github_token: ${{ secrets.BACKPORT_ACTION }}