diff options
| author | _Tradam <[email protected]> | 2023-05-09 23:20:16 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-09 23:20:16 -0400 |
| commit | 1b25d340de195490f3a4ff0551308f5d8420d8d0 (patch) | |
| tree | 42cf13be4585e50cf48e8c3ee335d417ecf67096 | |
| parent | 2eac016befebf6153cc3306ac1d584e34da29f6f (diff) | |
| download | RodeoKit-1b25d340de195490f3a4ff0551308f5d8420d8d0.tar.gz RodeoKit-1b25d340de195490f3a4ff0551308f5d8420d8d0.zip | |
Update send_autobuild_webdocs_ping.yml
| -rw-r--r-- | .github/workflows/send_autobuild_webdocs_ping.yml | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/.github/workflows/send_autobuild_webdocs_ping.yml b/.github/workflows/send_autobuild_webdocs_ping.yml index 91129c9..b0bc009 100644 --- a/.github/workflows/send_autobuild_webdocs_ping.yml +++ b/.github/workflows/send_autobuild_webdocs_ping.yml @@ -1,14 +1,12 @@ # This is a basic workflow to help you get started with Actions -name: CI +name: "Send Autobuild Webdocs Ping" # Controls when the workflow will run on: # Triggers the workflow on push or pull request events but only for the "main" branch push: branches: [ "main" ] - pull_request: - branches: [ "main" ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -25,15 +23,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - name: remote stuff run: | - curl -XPOST -u "realtradam:${{ secrets.ACCESS_TOKEN }}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/CatgirlsRodeo/dev.catgirls.rodeo/dispatches --data '{"event_type": "build_application"}' - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. + curl -XPOST -u "realtradam:${{ secrets.ACCESS_TOKEN }}" -H "Accept: application/vnd.github+json" -H "Content-Type: application/json" https://api.github.com/repos/CatgirlsRodeo/dev.catgirls.rodeo/dispatches --data '{"event_type": "build_application"}' + |
