-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused commented code and commment commented code that should …
…stay
- Loading branch information
Showing
1 changed file
with
1 addition
and
18 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,7 @@ jobs: | |
echo "EOF" >> "$GITHUB_OUTPUT" | ||
continue-on-error: true | ||
|
||
# This can be uncommmented to make it possible to ssh into the container to debug the run | ||
#- name: Setup tmate session | ||
# uses: mxschmitt/action-tmate@v3 | ||
|
||
|
@@ -146,24 +147,6 @@ jobs: | |
echo "EOF" >> "$GITHUB_OUTPUT" | ||
continue-on-error: true | ||
|
||
# TODO(art): this should only run on master merge | ||
#- name: Commit and Push Terraform Outputs | ||
# id: commit | ||
# run: | | ||
# { | ||
# echo "git_commit<<EOF" | ||
# git config --global user.email "[email protected]" | ||
# git config --global user.name "OONI Github Actions Bot" | ||
# git add . | ||
# git commit -m "skip-terraform: autoupdate terraform outputs" || echo "No changes to commit" | ||
# git push origin HEAD:${{ github.event.pull_request && github.head_ref || github.ref_name }} | ||
# echo "EOF" | ||
# } >> "$GITHUB_OUTPUT" | ||
# env: | ||
# GITHUB_REF: ${{ github.ref }} | ||
# GITHUB_HEAD_REF: ${{ github.head_ref }} | ||
# continue-on-error: true | ||
|
||
- uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|