Skip to content

Evergreen

Evergreen #4

Workflow file for this run

---
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/