Skip to content

chore: automatic rebase tests #29

chore: automatic rebase tests

chore: automatic rebase tests #29

name: Automatic rebase
on:
workflow_dispatch: ~
push:
branches:
- master
jobs:
rebase:
runs-on: ubuntu-latest
steps:
steps:

Check failure on line 13 in .github/workflows/automatic-rebase.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/automatic-rebase.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- uses: actions/checkout@v2
- uses: actions/github-script@v6
with:
script: |
const query = `query($owner:String!, $name:String!, $labels:[String!]) {
repository(owner:$owner, name:$name){
pullRequests(labels: $labels, first: 50) {
nodes {
headRefName
}
}
}
}`;
const variables = {
owner: context.repo.owner,
name: context.repo.repo,
labels: ['Module']
}
const result = await github.graphql(query, variables)
const branches = result.repository.pullRequests.nodes.map(node => node.headRefName)
- name: gh test
run: |
ls -la
gh pr list --label Module --limit 50
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}