馃悰 fakeclient: Allow updating managedFields through Update (#3585) #3
Workflow file for this run
This file contains hidden or 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: Tag setup-envtest | |
| on: | |
| push: | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+*' | |
| jobs: | |
| create-mangled-tag: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # Required to create a new tag via API | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # tag=v7.0.1 | |
| with: | |
| fetch-tags: true | |
| - name: Validate and Create Tag | |
| id: copy-tag | |
| shell: bash | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: ./hack/tag-setup-envtest.sh |