forked from 030/gomod-go-version-updater-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [030#72] Create github pr labels if they do not exist yet
- Loading branch information
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
name: python | ||
'on': push | ||
"on": push | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: testing | ||
run: | | ||
echo hellworld | ||
gh label list --search documentation | ||
gh label list --json name |\ | ||
jq -r '.[] | select(.name=="documentation") | .name' | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: 3.9.18 | ||
cache: 'pip' | ||
cache: "pip" | ||
- name: Install PIP packages defined in requirements.txt | ||
run: | | ||
pip install -r requirements.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.vscode |