We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
update-tox
1 parent 051cc01 commit d25a0cbCopy full SHA for d25a0cb
1 file changed
.github/workflows/update-tox.yml
@@ -9,6 +9,7 @@ on:
9
jobs:
10
update-tox:
11
name: Update test matrix
12
+ if: github.ref == 'refs/heads/master'
13
runs-on: ubuntu-latest
14
timeout-minutes: 10
15
@@ -59,7 +60,6 @@ jobs:
59
60
BRANCH_NAME: ${{ steps.create-branch.outputs.branch_name }}
61
COMMIT_TITLE: ${{ steps.create-branch.outputs.commit_title }}
62
DATE: ${{ steps.create-branch.outputs.date }}
- BASE_BRANCH: ${{ github.ref_name }}
63
with:
64
script: |
65
const branchName = process.env.BRANCH_NAME;
@@ -105,7 +105,7 @@ jobs:
105
repo: context.repo.repo,
106
title: commitTitle + ' (' + date + ')',
107
head: branchName,
108
- base: process.env.BASE_BRANCH,
+ base: 'master',
109
body: prBody,
110
});
111
0 commit comments