diff options
| author | William Boman <william@redwill.se> | 2022-07-09 13:05:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-09 11:05:38 +0000 |
| commit | fd572ef6cfdc804658f1d00b81dc06724af28dae (patch) | |
| tree | 4fe4f3a586bcaa4796ce4e5d2ae14e90dca89b4a /.github | |
| parent | chore(workflow): add bot-automation.yml (#38) (diff) | |
| download | mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.tar mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.tar.gz mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.tar.bz2 mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.tar.lz mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.tar.xz mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.tar.zst mason-fd572ef6cfdc804658f1d00b81dc06724af28dae.zip | |
fix(scripts): set packpath instead of rtp for dependencies (#42)
* fix(scripts): set packpath instead of rtp for dependencies
* chore: remove bot-automation.yml
This will not function as I had expected as secrets are not available in
PRs coming from forks, which defeats the whole purpose. Will have to
build a standalone webhook service in a closed environment instead.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/bot-automation.yml | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/bot-automation.yml b/.github/workflows/bot-automation.yml deleted file mode 100644 index 7f11b9ad..00000000 --- a/.github/workflows/bot-automation.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Bot automation - -on: - pull_request_review: - types: - - submitted - - edited - -jobs: - make-generate: - if: github.event.sender.login == 'williamboman' && contains(github.event.review.body, '@williambotman /generate') - runs-on: ubuntu-latest - steps: - - name: Clone repository - uses: actions/checkout@v2 - with: - fetch-depth: 0 - ref: ${{ github.event.pull_request.head.ref }} - repository: ${{ github.event.pull_request.head.repo.full_name }} - token: ${{ secrets.PAT }} - - - uses: rhysd/action-setup-vim@v1 - with: - neovim: true - version: v0.7.0 - - - name: make generate - run: make generate - - - uses: EndBug/add-and-commit@v9 - with: - author_name: William Botman - author_email: william+bot@redwill.se - message: "chore: run make generate" - push: true |
