Add SequeI to model validation operator team (#684) #196
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: sync-changes-sigstore | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| preview: | |
| description: "Dry run of the Pulumi changes" | |
| required: false | |
| default: false | |
| type: boolean | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'github-sync/github-data/sigstore/*.yaml' | |
| - 'github-sync/Pulumi.github-prod.yaml' | |
| permissions: {} | |
| env: | |
| PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | |
| GITHUB_OWNER: sigstore | |
| jobs: | |
| Update: | |
| name: sync-changes-sigstore | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: sigstore/github-sync@main | |
| if: ${{ inputs.preview }} | |
| with: | |
| work_dir: ./github-sync | |
| config_directory: ./github-sync/github-data | |
| stack_name: sigstore/github-prod | |
| pulumi_access_token: ${{ secrets.PULUMI_ACCESS_TOKEN }} | |
| pulumi_command: preview | |
| gh_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: sigstore/github-sync@main | |
| if: ${{ !inputs.preview }} | |
| with: | |
| work_dir: ./github-sync | |
| config_directory: ./github-sync/github-data | |
| stack_name: sigstore/github-prod | |
| pulumi_access_token: ${{ secrets.PULUMI_ACCESS_TOKEN }} | |
| pulumi_command: up | |
| gh_token: ${{ secrets.GITHUB_TOKEN }} |