Skip to content

Bump actions/checkout from 4 to 7 in the github-actions group #8

Bump actions/checkout from 4 to 7 in the github-actions group

Bump actions/checkout from 4 to 7 in the github-actions group #8

Workflow file for this run

name: Autosubmit
on:
pull_request_target:
types: [opened, reopened, labeled, synchronize]
permissions:
pull-requests: write
contents: write
jobs:
autosubmit:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'autosubmit')
steps:
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}