BES_trigger_unmute_action #163
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
# create bot unmute trigger | |
name: BES_trigger_unmute_action | |
on: | |
# every day at 23 55 UTC | |
schedule: | |
- cron: "55 23 * * *" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: github_actions_bes | |
steps: | |
- name: trigger botEnSky UnMute | |
env: | |
BES_ACTION_TOKEN: ${{ secrets.BES_ACTION_TOKEN }} | |
BES_ACTION_URL: ${{ secrets.BES_ACTION_URL }} | |
run: | | |
curl -q -H "API-TOKEN: ${BES_ACTION_TOKEN}" -H "PLUGIN-NAME: UnMute" "${BES_ACTION_URL}" |