-
-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dab5410
commit 5921cc3
Showing
1 changed file
with
4 additions
and
4 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 |
---|---|---|
|
@@ -46,6 +46,10 @@ jobs: | |
run: | ||
echo "PY=$(python --version --version | sha256sum | cut -d' ' -f1)" >> | ||
$GITHUB_ENV | ||
- name: Analyze request | ||
run: | | ||
# sets environment variables that available in next steps via $ {{ env.PORT_... }} notation | ||
python DINAR/workflow-files/analyze_port_trigger.py "${{ github.event.issue.title }}" | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
with: | ||
|
@@ -56,10 +60,6 @@ jobs: | |
with: | ||
path: ~/.cache/pre-commit | ||
key: pre-commit|${{ env.PY }}|${{ hashFiles('REPO/.pre-commit-config.yaml') }} | ||
- name: Analyze request | ||
run: | | ||
# sets environment variables that available in next steps via $ {{ env.PORT_... }} notation | ||
python DINAR/workflow-files/analyze_port_trigger.py "${{ github.event.issue.title }}" | ||
- name: Copy module to new branch | ||
run: | | ||
git config --global user.email "[email protected]" | ||
|