mirror of
https://github.com/godotengine/godot-website.git
synced 2026-01-04 06:09:55 +03:00
Scheduled task security.txt reminder (#461)
This commit is contained in:
19
.github/workflows/reminder.yml
vendored
Normal file
19
.github/workflows/reminder.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Yearly update security.txt
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 0 1 11 *"
|
||||
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
jobs:
|
||||
create-issue:
|
||||
name: Create issue
|
||||
runs-on: ubuntu-latest
|
||||
permissions: write-all
|
||||
steps:
|
||||
- name: Create issue
|
||||
run: |
|
||||
gh issue create --repo '${{ github.repository }}' --title 'Update `security.txt` expiration date' --body 'This is the yearly reminder to update `.well-known/security.txt`'
|
||||
Reference in New Issue
Block a user