-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: github workflow vulnerable to script injection (#2663)
* inline repo's full_name as env var Signed-off-by: Diogo Teles Sant'Anna <[email protected]> Co-authored-by: Diego Marquez <[email protected]>
- Loading branch information
1 parent
a7e4fd6
commit 9151ac2
Showing
1 changed file
with
12 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 |
---|---|---|
|
@@ -19,10 +19,14 @@ on: | |
paths: | ||
- 'generation_config.yaml' | ||
|
||
|
||
env: | ||
HEAD_REF: ${{ github.head_ref }} | ||
REPO_FULL_NAME: ${{ github.event.pull_request.head.repo.full_name }} | ||
GITHUB_REPOSITORY: ${{ github.repository }} | ||
|
||
jobs: | ||
library_generation: | ||
# skip pull requests coming from a forked repository | ||
if: github.event.pull_request.head.repo.full_name == github.repository | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -32,11 +36,15 @@ jobs: | |
- name: Generate changed libraries | ||
shell: bash | ||
run: | | ||
set -x | ||
set -ex | ||
if [[ "${GITHUB_REPOSITORY}" != "${REPO_FULL_NAME}" ]]; then | ||
echo "This PR comes from a fork. Generation will be skipped" | ||
exit 0 | ||
fi | ||
[ -z "$(git config user.email)" ] && git config --global user.email "[email protected]" | ||
[ -z "$(git config user.name)" ] && git config --global user.name "cloud-java-bot" | ||
bash .github/scripts/hermetic_library_generation.sh \ | ||
--target_branch ${{ github.base_ref }} \ | ||
--current_branch ${{ github.head_ref }} | ||
--current_branch $HEAD_REF | ||
env: | ||
GH_TOKEN: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }} |