Skip to content

Commit

Permalink
Merge pull request #1016 from igmhub/Waelthus-patch-1
Browse files Browse the repository at this point in the history
[no bump] Let's try the merge_groups again...
  • Loading branch information
iprafols authored Jun 16, 2023
2 parents ec2ca13 + 680f5ae commit ddbe4d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name: Bump version
on:
on:
merge_group:
types: [checks_requested]
jobs:
build:
bump_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4

- name: Install bump2version
run: pip install bump2version
Expand Down Expand Up @@ -38,4 +39,3 @@ jobs:
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
6 changes: 3 additions & 3 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ on:
merge_group:

jobs:
build:
lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
SETUP_XVFB: True # avoid issues if mpl tries to open a GUI window

jobs:
build:
test:
runs-on: ubuntu-latest
# the whole CI pipeline will be skipped if [ci skip] is in the commit msg
if: "!contains(github.event.head_commit.message, '[ci skip]')"
Expand All @@ -29,9 +29,9 @@ jobs:
# OPENBLAS_NUM_THREADS: 1
# NUMEXPR_NUM_THREADS: 1
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit ddbe4d3

Please sign in to comment.