Reminders #2
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: Reminders | |
on: | |
schedule: | |
# Every year at noon on 1 June | |
- cron: 0 12 1 6 * | |
jobs: | |
renewKey: | |
name: Renew key | |
runs-on: ubuntu-latest | |
steps: | |
- name: Post issue | |
uses: imjohnbo/issue-bot@v3 | |
with: | |
assignees: "richardlehane" | |
labels: "install" | |
title: Renew key for debian signing | |
body: |- | |
The key for signing deb packages is about to expire! | |
Do this: | |
gpg --list-options show-unusable-subkeys --list-keys | |
gpg --edit-key 0x20F802FE798E6857 | |
gpg> key 2 | |
gpg> expire | |
gpg> 1Y | |
gpg --keyserver keyserver.ubuntu.com --send-keys 0x20F802FE798E6857 | |
pinned: true |