diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 2fd54bca..63d70726 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -39,8 +39,6 @@ body: We may also ask you to supply us with debug output following [these steps](https://www.pulumi.com/docs/using-pulumi/pulumi-packages/debugging-provider-packages/). **Note:** If the log output is more than a few lines, please send us a Gist or a link to a file. - validations: - required: true - type: textarea id: resources attributes: diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index e3da72c3..dfcecb6b 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -6,7 +6,6 @@ on: workflow_call: inputs: {} - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MAILGUN_API_KEY: ${{ secrets.MAILGUN_API_KEY }} @@ -31,33 +30,31 @@ jobs: name: License Check runs-on: ubuntu-latest steps: - - name: Checkout Repo - uses: actions/checkout@v4 - with: - ref: ${{ env.PR_COMMIT_SHA }} - - name: Setup tools - uses: ./.github/actions/setup-tools - with: - tools: go - - run: make upstream - - uses: pulumi/license-check-action@main - with: - module-path: provider - ignore-modules: >- - github.com/aead/chacha20, - github.com/apache/arrow/go/v12, - github.com/apache/thrift/lib/go/thrift, - github.com/cloudflare/circl, - github.com/golang, - github.com/gorhill/cronexpr, - github.com/in-toto/in-toto-golang, - github.com/jmespath/go-jmespath, - github.com/keybase/go-crypto, - github.com/klauspost/compress, - github.com/mattn/go-localereader, - github.com/modern-go/reflect2, - github.com/pierrec/lz4, - github.com/pjbgf/sha1cd, - github.com/pulumi, - github.com/segmentio/asm, - golang.org + - name: Checkout Repo + uses: actions/checkout@v4 + - name: Setup tools + uses: ./.github/actions/setup-tools + with: + tools: go + - run: make upstream + - uses: pulumi/license-check-action@main + with: + module-path: provider + ignore-modules: >- + github.com/aead/chacha20, + github.com/apache/arrow/go/v12, + github.com/apache/thrift/lib/go/thrift, + github.com/cloudflare/circl, + github.com/golang, + github.com/gorhill/cronexpr, + github.com/in-toto/in-toto-golang, + github.com/jmespath/go-jmespath, + github.com/keybase/go-crypto, + github.com/klauspost/compress, + github.com/mattn/go-localereader, + github.com/modern-go/reflect2, + github.com/pierrec/lz4, + github.com/pjbgf/sha1cd, + github.com/pulumi, + github.com/segmentio/asm, + golang.org