Skip to content

Commit

Permalink
Merge pull request #503 from bancorprotocol/zavelevsky-patch-1
Browse files Browse the repository at this point in the history
Update release-and-pypi-publish.yml
  • Loading branch information
zavelevsky authored Mar 27, 2024
2 parents c005aff + d74db73 commit ff41dce
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions .github/workflows/release-and-pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add CHANGELOG.md
git commit -m "Update changelog [skip ci]"
git commit --allow-empty -m "Update changelog [skip ci]"
# push to main branch using CasperWA/push-protected@v2 action
- name: Push to protected branch
Expand Down Expand Up @@ -175,27 +175,4 @@ jobs:
password: ${{ secrets.FASTLANE_PYPI_API_TOKEN }}
repository-url: https://upload.pypi.org/legacy/

restart_jobs:
runs-on: ubuntu-latest
needs: combined_job
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restart Databricks Jobs
run: |
echo "Getting list of jobs..."
JOB_LIST=$(curl -X GET -H "Authorization: Bearer ${{ secrets.SERVER_TOKEN }}" "https://${{ secrets.SERVER_DOMAIN }}/api/2.0/jobs/list")
echo "Jobs: $JOB_LIST"
for JOB in $(echo "${JOB_LIST}" | jq -r '.jobs[].job_id'); do
JOB_INFO=$(curl -X GET -H "Authorization: Bearer ${{ secrets.SERVER_TOKEN }}" "https://${{ secrets.SERVER_DOMAIN }}/api/2.0/jobs/get?job_id=$JOB")
CLUSTER_NAME=$(echo "$JOB_INFO" | jq -r '.settings.new_cluster.cluster_name')
if [ "$CLUSTER_NAME" = "Fastlane (v3)" ]; then
echo "Restarting job $JOB on cluster $CLUSTER_NAME..."
RESPONSE=$(curl -X POST -H "Authorization: Bearer ${{ secrets.SERVER_TOKEN }}" -d "{\"job_id\": $JOB}" "https://${{ secrets.SERVER_DOMAIN }}/api/2.0/jobs/run-now")
echo "Response: $RESPONSE"
fi
done

0 comments on commit ff41dce

Please sign in to comment.