Evergreen #3
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: Evergreen | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "3 2 1 * *" | |
permissions: | |
issues: write | |
jobs: | |
evergreen: | |
name: evergreen | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create GitHub App token | |
uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ vars.OSPO_AUTOMATION_APP_ID }} | |
private-key: ${{ secrets.OSPO_AUTOMATION_APP_KEY }} | |
owner: ${{ github.repository_owner }} | |
- name: Run evergreen action | |
uses: github/evergreen@v1 | |
env: | |
GH_TOKEN: ${{ steps.app-token.outputs.token }} | |
ORGANIZATION: ${{ github.repository_owner }} | |
COMMIT_MESSAGE: "chore: add Dependabot configuration" | |
TITLE: "chore: add Dependabot configuration" | |
BODY: | | |
This PR adds a Dependabot configuration file to the repository. | |
This will enable Dependabot to keep your dependencies up-to-date automatically. | |
For more information, see https://dependabot.com/ |