chore: automatic rebase tests #29
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: | ||
steps: | ||
- 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 }} |