This action sends a deploy/destroy message to hubot.
Not likely to be useful to the general public.
Define a workflow in .github/workflows/continuous-integration.yml (or add a job if you already have defined workflows).
💡 Read more about Configuring a workflow.
on:
pull_request:
push:
branches:
- master
tags:
- "**"
name: "Continuous Integration"
jobs:
github-action-template:
name: github-action-template
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@master
- name: Run deploy
uses: ascendantcompliance/[email protected]
with:
site: crs
branch: master
environ: production
command: deploy
token: "${{ secrets.DEPLOY_TOKEN }}"
url: "${{ secrets.HUBOT_URL }}"This package is licensed using the MIT