mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-17 17:32:35 +00:00
chore(ci): add required build step
This commit is contained in:
parent
52d49c8219
commit
beff1be125
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
|
@ -64,9 +64,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
configurationFile: example/renovate-config.js
|
configurationFile: example/renovate-config.js
|
||||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
|
build:
|
||||||
|
needs: [lint, commitlint, e2e]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo 'dummy'
|
||||||
|
|
||||||
release:
|
release:
|
||||||
needs: [lint, commitlint, e2e]
|
needs: [build]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: |
|
if: |
|
||||||
startsWith(github.event.commits[0].message,
|
startsWith(github.event.commits[0].message,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue