Skip to content

Commit

Permalink
Adding github action for automated submission and automerge dependabot
Browse files Browse the repository at this point in the history
prs
  • Loading branch information
louisgv committed Feb 24, 2022
1 parent 38fb852 commit 41e72c8
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: automerge
on: [pull_request]

jobs:
automerge:
needs: build
runs-on: ubuntu-latest

permissions:
pull-requests: write
contents: write

steps:
- uses: fastify/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "submit"
on:
workflow_dispatch:

jobs:
submit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: yarn build
- name: Browser Plugin Publish
uses: plasmo-corp/bpp@v1
with:
keys: ${{ secrets.SUBMIT_KEYS }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ builds
build
*.zip
.eslintcache
keys.json

0 comments on commit 41e72c8

Please sign in to comment.