-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into remove-old-official-images
- Loading branch information
Showing
48 changed files
with
382 additions
and
240 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: F5 CLA | ||
|
||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
|
||
concurrency: | ||
group: ${{ github.ref_name }}-cla | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
f5-cla: | ||
name: F5 CLA | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
actions: write | ||
contents: read | ||
pull-requests: write | ||
statuses: write | ||
steps: | ||
- name: Run F5 Contributor License Agreement (CLA) assistant | ||
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have hereby read the F5 CLA and agree to its terms') || github.event_name == 'pull_request_target' | ||
uses: contributor-assistant/github-action@f41946747f85d28e9a738f4f38dbcc74b69c7e0e # v2.5.1 | ||
with: | ||
# Any pull request targeting the following branch will trigger a CLA check. | ||
branch: "main" | ||
# Path to the CLA document. | ||
path-to-document: "https://github.com/f5/.github/blob/main/CLA/cla-markdown.md" | ||
# Custom CLA messages. | ||
custom-notsigned-prcomment: "🎉 Thank you for your contribution! It appears you have not yet signed the F5 Contributor License Agreement (CLA), which is required for your changes to be incorporated into an F5 Open Source Software (OSS) project. Please kindly read the [F5 CLA](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md) and reply on a new comment with the following text to agree:" | ||
custom-pr-sign-comment: "I have hereby read the F5 CLA and agree to its terms" | ||
custom-allsigned-prcomment: "✅ All required contributors have signed the F5 CLA for this PR. Thank you!" | ||
# Remote repository storing CLA signatures. | ||
remote-organization-name: "f5" | ||
remote-repository-name: "f5-cla-data" | ||
path-to-signatures: "signatures/beta/signatures.json" | ||
# Comma separated list of usernames for maintainers or any other individuals who should not be prompted for a CLA. | ||
allowlist: bot* | ||
# Do not lock PRs after a merge. | ||
lock-pullrequest-aftermerge: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.F5_CLA_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,6 @@ on: | |
required: true | ||
type: boolean | ||
default: false | ||
createPullRequest: | ||
description: 'Create pull request back into main' | ||
required: true | ||
type: boolean | ||
default: false | ||
uploadJWT: | ||
description: 'Temporary JWT to publish packages to up-ap.nginx.com' | ||
required: true | ||
|
@@ -125,12 +120,27 @@ jobs: | |
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y gpgv1 monkeysphere | ||
go install github.com/goreleaser/nfpm/v2/cmd/nfpm@${{ env.NFPM_VERSION }} | ||
- name: Tag release | ||
go install github.com/goreleaser/nfpm/v2/cmd/[email protected] | ||
- name: Generate Changelog | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git clone https://github.com/nginx/agent-changelog.git | ||
cd ./agent-changelog/source | ||
pip install -r requirements.txt | ||
python agent.py | ||
- name: Push Changelog | ||
run: | | ||
mv agent-changelog/source/changelog.md ./site/content/ | ||
git config --global user.name 'github-actions' | ||
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | ||
git add ./site/content/changelog.md | ||
git commit -m "Add generated changelog" | ||
git push origin HEAD:${{ github.ref_name }} | ||
- name: Tag release | ||
run: | | ||
git tag -a "v${{env.VERSION}}" -m "CI Autogenerated" | ||
git tag -a "sdk/v${{env.VERSION}}" -m "CI Autogenerated" | ||
- name: Push Tags | ||
|
@@ -175,8 +185,6 @@ jobs: | |
az logout | ||
if: always() | ||
- name: Upload Release Assets | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# clobber overwrites existing assets of the same name | ||
run: | | ||
gh release upload --clobber v${{env.VERSION}} \ | ||
|
@@ -202,7 +210,7 @@ jobs: | |
})) | ||
console.log(`Release published: ${release.data.html_url}`) | ||
- name: Create Pull Request | ||
if: ${{ inputs.publishPackages == true && inputs.createPullRequest == true }} | ||
if: ${{ inputs.publishPackages == true }} | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | ||
with: | ||
script: | | ||
|
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.