Permalink
Cannot retrieve contributors at this time
36 lines (33 sloc)
884 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
rpki-peering-api-discovery/.github/workflows/update.yml
View runs Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: "Update Generated Files" | |
# This rule is not run automatically. | |
# It can be run manually to update all of the files that are part | |
# of the template, specifically: | |
# - README.md | |
# - CONTRIBUTING.md | |
# - .note.xml | |
# - .github/CODEOWNERS | |
# - Makefile | |
# | |
# | |
# This might be useful if you have: | |
# - added, removed, or renamed drafts (including after adoption) | |
# - added, removed, or changed draft editors | |
# - changed the title of drafts | |
# | |
# Note that this removes any customizations you have made to | |
# the affected files. | |
on: workflow_dispatch | |
jobs: | |
build: | |
name: "Update Files" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Update Generated Files" | |
uses: martinthomson/i-d-template@v1 | |
with: | |
make: update-files | |
token: ${{ github.token }} | |
- name: "Push Update" | |
run: git push |