-
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.
Merge pull request #11 from demisto/deprecate-circle-ci
Deprecating CircleCI to migrate to GA
- Loading branch information
Showing
2 changed files
with
63 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Docker Repository Update | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: '0 1 * * *' | ||
|
||
jobs: | ||
update_docker_repo_info: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python environment | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Set up pipenv | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pipenv | ||
- name: Install dependencies | ||
run: pipenv install | ||
|
||
- name: Run update-docker-repo-info script | ||
run: pipenv run ./update-docker-repo-info.py | ||
|
||
- name: Configure Git for commit | ||
run: | | ||
git config --global user.email "dc-builder@users.noreply.github.com" | ||
git config --global user.name "dc-builder" | ||
- name: Check for changes | ||
id: git_status | ||
run: | | ||
git status --short > git_changes.txt | ||
cat git_changes.txt | ||
- name: Upload artifacts (if changes) | ||
if: steps.git_status.outputs.changes != '' | ||
run: | | ||
mkdir -p artifacts | ||
cat git_changes.txt | awk '{print $2}' | sed 's:/*$::' | xargs -I {} cp -rf {} artifacts/. || echo "cp failed for some reason. continue..." | ||
continue-on-error: true | ||
|
||
- name: Commit and push changes | ||
if: steps.git_status.outputs.changes != '' | ||
run: | | ||
git add . | ||
git commit -m "$(date): auto repo info update [skip ci]" | ||
git push | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
continue-on-error: true | ||
|
||
- name: Print completion message | ||
run: echo "Docker repository update complete." |