Skip to content

Commit 46ad19e

Browse files
author
openshift-pipelines-bot
committed
[bot] Update release-v1.24.x from tektoncd/pipelines-as-code to 02bf3c9
$ git diff --stat 02bf3c9..ff3b414 .github/scripts/check-pr-permissions.js | 206 +++++++++ .github/workflows/container.yaml | 14 +- .github/workflows/e2e.yaml | 52 +-- .github/zizmor.yml | 12 - .tekton/linter.yaml | 21 - Makefile | 6 +- config/201-controller-role.yaml | 2 +- config/202-watcher-role.yaml | 2 +- docs/content/ALLVERSIONS | 2 +- docs/content/VERSION | 2 +- docs/content/docs/providers/github-app.md | 2 +- go.mod | 4 +- go.sum | 8 +- pkg/apis/pipelinesascode/keys/keys.go | 2 - pkg/cmd/tknpac/logs/exec_unix.go | 8 - pkg/cmd/tknpac/logs/exec_windows.go | 23 -- pkg/cmd/tknpac/logs/logs.go | 13 +- pkg/cmd/tknpac/logs/logs_test.go | 32 +- pkg/kubeinteraction/labels.go | 5 - pkg/kubeinteraction/labels_test.go | 2 - pkg/llm/providers/gemini/client_test.go | 2 +- pkg/llm/providers/openai/client_test.go | 2 +- pkg/params/run.go | 3 +- pkg/params/run_test.go | 91 ---- pkg/params/versiondata/version.txt | 2 +- pkg/pipelineascode/pipelineascode.go | 52 +++ pkg/pipelineascode/pipelineascode_startpr_test.go | 374 ++++++++++++++++- pkg/provider/gitea/gitea.go | 11 +- pkg/provider/gitea/gitea_test.go | 16 +- pkg/provider/github/acl.go | 33 +- pkg/provider/github/acl_test.go | 72 +++- pkg/provider/github/github.go | 111 +---- pkg/provider/github/github_test.go | 460 +-------------------- pkg/provider/github/graphql.go | 274 ------------ pkg/provider/github/graphql_test.go | 241 ----------- pkg/provider/github/parse_payload.go | 65 +-- pkg/provider/github/parse_payload_test.go | 176 +------- pkg/reconciler/event.go | 8 - pkg/reconciler/event_test.go | 3 - pkg/reconciler/reconciler.go | 136 ++---- pkg/reconciler/reconciler_test.go | 279 ------------- pkg/resolve/remote.go | 7 +- pkg/resolve/remote_test.go | 4 +- pkg/test/github/github.go | 129 ------ release.k8s.yaml | 80 ++-- release.yaml | 86 ++-- test/gitea_test.go | 19 - test/github_incoming_test.go | 155 ------- test/github_pullrequest_rerequest_test.go | 50 --- test/pkg/gitea/test.go | 5 +- test/pkg/github/pr.go | 2 +- test/testdata/pipeline_relative_task.yaml | 12 - .../pipelinerun_remote_pipeline_repo_path.yaml | 13 - vendor/github.com/go-jose/go-jose/v3/asymmetric.go | 10 +- .../go-jose/go-jose/v3/cipher/key_wrap.go | 10 +- vendor/github.com/go-jose/go-jose/v3/symmetric.go | 26 +- vendor/github.com/go-jose/go-jose/v4/asymmetric.go | 10 +- .../go-jose/go-jose/v4/cipher/key_wrap.go | 10 +- vendor/github.com/go-jose/go-jose/v4/symmetric.go | 26 +- vendor/modules.txt | 4 +- 60 files changed, 954 insertions(+), 2533 deletions(-) https://github.com/tektoncd/pipelines-as-code/compare/02bf3c9ba7225ea7f82fe28df0311073b3f77c6c..ff3b4149a3b9b77b737ffc0e16e42dd05c41cb77
1 parent a1d280e commit 46ad19e

61 files changed

Lines changed: 2534 additions & 955 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

head

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ff3b4149a3b9b77b737ffc0e16e42dd05c41cb77
1+
02bf3c9ba7225ea7f82fe28df0311073b3f77c6c

upstream/.github/scripts/check-pr-permissions.js

Lines changed: 0 additions & 206 deletions
This file was deleted.

upstream/.github/workflows/container.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ jobs:
3737
steps:
3838
- name: Checkout repository
3939
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
40+
with:
41+
persist-credentials: false
4042

4143
- name: Set up Go
42-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
44+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
4345
with:
4446
go-version-file: "go.mod"
4547

@@ -50,13 +52,13 @@ jobs:
5052
run: |
5153
set -x
5254
releaseBranchFormat='release-v'
53-
if [[ ${{ github.ref_name }} == ${releaseBranchFormat}* ]]; then
54-
tag=v$(echo ${{ github.ref_name }}|sed "s,${releaseBranchFormat},,")
55-
elif [[ ${{ github.ref }} == refs/pull/* ]]; then
56-
tag=pr-$(echo ${{ github.ref }} | cut -c11-|sed 's,/merge,,')
55+
if [[ ${GITHUB_REF_NAME} == ${releaseBranchFormat}* ]]; then
56+
tag=v$(echo ${GITHUB_REF_NAME}|sed "s,${releaseBranchFormat},,")
57+
elif [[ ${GITHUB_REF} == refs/pull/* ]]; then
58+
tag=pr-$(echo ${GITHUB_REF} | cut -c11-|sed 's,/merge,,')
5759
else
5860
# Sanitize the tag by replacing invalid characters with hyphens
59-
tag=$(echo ${{ github.ref_name }}|sed 's,/merge,,' | sed 's,[/.],-,g')
61+
tag=$(echo ${GITHUB_REF_NAME}|sed 's,/merge,,' | sed 's,[/.],-,g')
6062
fi
6163
for image in ./cmd/*;do
6264
ko build -B -t "${tag}" --platform="${{ env.PLATFORMS }}" "${image}"

0 commit comments

Comments
 (0)