We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a491d7d commit 971125fCopy full SHA for 971125f
1 file changed
.github/workflows/ci.yml
@@ -52,11 +52,12 @@ jobs:
52
latest-changes:
53
name: Latest Changes
54
runs-on: ubuntu-latest
55
- if: github.event_name == 'pull_request' && github.ref == 'refs/heads/main' && github.event.pull_request.merged == true && github.event_name == 'push'
+ if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.ref == 'refs/heads/main' && github.event.pull_request.merged == true)
56
steps:
57
- uses: actions/checkout@v4
58
with:
59
token: ${{ secrets.ATTICUS_PAT }}
60
- uses: docker://tiangolo/latest-changes:0.2.0
61
62
token: ${{ secrets.GITHUB_TOKEN }}
63
+ commit-message: "chore: update README.md"
0 commit comments