You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
523 B
YAML
24 lines
523 B
YAML
2 years ago
|
name: Upgradeable Trigger
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
tags:
|
||
|
- 'v*'
|
||
|
paths-ignore:
|
||
|
- 'docs/**'
|
||
|
- '**.md'
|
||
|
|
||
|
jobs:
|
||
|
trigger:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Repository Dispatch
|
||
|
uses: peter-evans/repository-dispatch@v2
|
||
|
with:
|
||
|
token: ${{ secrets.UPGRADEABLE_REPO_ACCESS_TOKEN }}
|
||
|
repository: chiru-labs/ERC721A-Upgradeable
|
||
|
event-type: Update
|
||
|
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
|