Remove restrictive validity check in caminfo #17
Workflow file for this run
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
name: Github to Gitlab CI - Run CodeBuild | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
on: | |
pull_request_target: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run script | |
run: | | |
git config --global user.name "abc" | |
git config --global user.email "abc@example.com" | |
git clone https://isis-codebuild-ci:$GITLAB_TOKEN@code.usgs.gov/astamile1/isis-codebuild-ci.git | |
cd isis-codebuild-ci | |
git checkout -b PR_$PR_NUMBER | |
echo -e "\nenv: \n shell: bash \n variables: \n PR_NUMBER: $PR_NUMBER \n MERGE_BRANCH: $GITHUB_BASE_REF" >> buildspec.yml | |
git commit -a -m "$PR_NUMBER" | |
git push origin PR_$PR_NUMBER --force | |