Set EDNS0 when no extra options are set by the dns client (#2195) #35
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: sync tag | |
on: | |
push: | |
tags: | |
- 'v*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }} | |
cancel-in-progress: true | |
jobs: | |
trigger_sync_tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger release tag sync | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: sync-tag.yml | |
ref: main | |
repo: ${{ secrets.UPSTREAM_REPO }} | |
token: ${{ secrets.NC_GITHUB_TOKEN }} | |
inputs: '{ "tag": "${{ github.ref_name }}" }' |