update #7
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: Repository Update | |
# yamllint disable-line rule:truthy | |
on: | |
repository_dispatch: | |
types: ["update"] | |
jobs: | |
whatever: | |
name: Running updater for ${{ github.event.client_payload.addon }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚀 Run Repository Updater | |
uses: hassio-addons/repository-updater@v1 | |
with: | |
addon: ${{ github.event.client_payload.addon }} | |
repository: ${{ github.repository }} | |
token: ${{ secrets.UPDATER_TOKEN }} |