Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: mergeit-backport
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types:
- labeled
branches:
- main
jobs:
if: ${{ github.event.label.name == 'mergeit' }}

Check failure on line 13 in .github/workflows/backports.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/backports.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fetch changelog types
run: |
gh pr -R tremble/amazon.aws diff 11 --name-only | \
grep -E '^changelogs/fragments/' | \
while read -r line
do cat "${line}" | python -c 'import sys, yaml; change = yaml.safe_load(sys.stdin.read()) ; print("\n".join(change.keys()));' 2>/dev/null
done