fix(background): use default icon on non-http/https tabs #302
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Delete PR artifacts | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
delete: | |
name: Delete artifacts | |
if: github.repository == 'interledger/web-monetization-extension' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Delete arfiacts | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const script = require('./.github/actions/delete-artifacts.cjs') | |
await script({ github, context, core }) |