chore: automatic rebase tests #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatic rebase | ||
on: | ||
workflow_dispatch: ~ | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
rebase: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- 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)) | ||
branches.forEach(b => { | ||
}) | ||
- | ||
Check failure on line 38 in .github/workflows/automatic-rebase.yml GitHub Actions / Automatic rebaseInvalid workflow file
|
||
name: gh test | ||
run: | | ||
gh pr list --label Module --limit 50 |