We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3466406 commit 38c3c4eCopy full SHA for 38c3c4e
2 files changed
.github/workflows/draft-release.yml
@@ -1,13 +1,21 @@
1
name: Draft Release on Merge
2
3
on:
4
+ workflow_run:
5
+ workflows: ["Pytest-Black-Ruff"]
6
+ types:
7
+ - completed
8
+ branches:
9
+ - main
10
push:
11
branches:
12
- main
13
14
jobs:
15
draft-release:
16
runs-on: ubuntu-latest
17
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
18
+
19
steps:
20
- name: Checkout code
21
uses: actions/checkout@v2
.github/workflows/python-app.yml
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
-name: The-Odds-API
+name: Pytest-Black-Ruff
0 commit comments