Skip to content

Commit

Permalink
feat(github): poetry update workflow [pulumi]
Browse files Browse the repository at this point in the history
  • Loading branch information
mergealot committed Oct 9, 2024
1 parent 13ee280 commit 98323e3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/poetry-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file was added by Pulumi and should not be edited manually. To edit the contents of this file, please go
# to the github-management project in moneymeets-pulumi and call `pulumi up` after changing the template file.

name: Poetry update

on:
workflow_dispatch:
schedule:
- cron: '* 09 01 * *' # Every month at 9am.

jobs:
poetry-update:
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
contents: write # Allow creation of separate branch and push to it
pull-requests: write # Allow creation of PRs
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed for check if dependencies update branch already exists
# Allows to use git operations such as git push on the repository
ssh-key: '${{ secrets.WORKFLOW_DEPLOY_KEY }}'

- uses: moneymeets/action-poetry-update@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 98323e3

Please sign in to comment.