chore(deps): bump androidx.fragment:fragment-testing from 1.8.4 to 1.… #1049
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: Update CHANGELOG.md | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
changelog: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Generate a changelog | |
uses: orhun/[email protected] | |
with: | |
config: cliff.toml | |
args: --verbose | |
env: | |
OUTPUT: CHANGELOG.md | |
- name: Import GPG key | |
id: import_gpg | |
uses: crazy-max/[email protected] | |
with: | |
gpg_private_key: ${{ secrets.GIT_ACTIONS_GPG_KEY }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Commit and push changes | |
run: | | |
if [[ `git status --porcelain` ]]; then | |
COMMIT_AUTHOR=$(git log -1 --pretty=%an) | |
if [[ "$COMMIT_AUTHOR" != "HeCodes2Much-Bot" ]]; then | |
git config --global user.name ${{ secrets.GIT_NAME }} | |
git config --global user.email ${{ secrets.GIT_EMAIL }} | |
git add -u | |
git commit -m "chore(changelog): Update CHANGELOG.md" | |
git push origin main | |
else | |
echo "WARNING: $COMMIT_AUTHOR last committed." | |
fi | |
else | |
echo "WARNING: No changes were detected." | |
fi | |
shell: bash |