Skip to content

Commit

Permalink
chore: automatic rebase tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ErwannLeRoux committed Aug 16, 2023
1 parent fa1ab42 commit 61d9394
Showing 1 changed file with 31 additions and 26 deletions.
57 changes: 31 additions & 26 deletions .github/workflows/automatic-rebase.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,36 @@
name: Automatic rebase

on:
workflow_dispatch: ~
push:
branches:
- master
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)
console.log(result.data.repository.pullRequests.nodes)
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)
- name: gh test
run: |
gh pr list --label Module --limit 50

0 comments on commit 61d9394

Please sign in to comment.