-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI from plugin_template. (#897)
Update CI from plugin_template Removed Django as a hard dependency Updated the No-Issue check message Added dev/Dockerfile to gitleaks to avoid security alerts on encryption keys to be added there Simplified the lock_requirements logic No-Issue
- Loading branch information
1 parent
8348eaa
commit f7c1141
Showing
11 changed files
with
73 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.04.08-88-ga67f224-dirty | ||
2021.04.08-99-gd8b54c6 |
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 |
---|---|---|
|
@@ -67,8 +67,8 @@ jobs: | |
- name: Make a PR with version bump | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
committer: pulpbot <pulp[email protected]> | ||
author: pulpbot <pulp[email protected]> | ||
committer: ansible <ansible[email protected]> | ||
author: ansible <ansible[email protected]> | ||
branch: minor-version-bump | ||
base: master | ||
title: Bump minor version | ||
|
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 |
---|---|---|
|
@@ -45,10 +45,10 @@ jobs: | |
pip install bandersnatch bump2version gitpython python-redmine towncrier==19.9.0 wheel | ||
echo ::endgroup:: | ||
- name: Configure Git with pulpbot name and email | ||
- name: Configure Git with ansible name and email | ||
run: | | ||
git config --global user.name 'pulpbot' | ||
git config --global user.email 'pulp[email protected]' | ||
git config --global user.name 'ansible' | ||
git config --global user.email 'ansible[email protected]' | ||
- name: Setting secrets | ||
run: python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT" | ||
|
@@ -202,10 +202,10 @@ jobs: | |
with: | ||
ruby-version: "2.6" | ||
|
||
- name: Configure Git with pulpbot name and email | ||
- name: Configure Git with ansible name and email | ||
run: | | ||
git config --global user.name 'pulpbot' | ||
git config --global user.email 'pulp[email protected]' | ||
git config --global user.name 'ansible' | ||
git config --global user.email 'ansible[email protected]' | ||
- name: Untar repository | ||
run: | | ||
|
@@ -249,13 +249,14 @@ jobs: | |
- name: Create Pull Request for Changelog | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
committer: pulpbot <pulp[email protected]> | ||
author: pulpbot <pulp[email protected]> | ||
branch: ${{ github.event.inputs.release }}-changelog | ||
committer: ansible <ansible[email protected]> | ||
author: ansible <ansible[email protected]> | ||
branch: changelog/${{ github.event.inputs.release }} | ||
base: master | ||
title: 'Building changelog for ${{ github.event.inputs.release }}' | ||
body: '[noissue]' | ||
commit-message: | | ||
Building changelog for ${{ github.event.inputs.release }} | ||
[noissue] | ||
delete-branch: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,10 +24,10 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Configure Git with pulpbot name and email | ||
- name: Configure Git with ansible name and email | ||
run: | | ||
git config --global user.name 'pulpbot' | ||
git config --global user.email 'pulp[email protected]' | ||
git config --global user.name 'ansible' | ||
git config --global user.email 'ansible[email protected]' | ||
- name: Run update | ||
run: | | ||
|
@@ -36,14 +36,13 @@ jobs: | |
- name: Create Pull Request for CI files | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
committer: pulpbot <[email protected]> | ||
author: pulpbot <[email protected]> | ||
branch: ${GITHUB_REF#refs/heads/}-update-ci-files | ||
base: ${GITHUB_REF#refs/heads/} | ||
title: 'Update CI for ${GITHUB_REF#refs/heads/}' | ||
body: '[noissue]' | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
committer: ansible <[email protected]> | ||
author: ansible <[email protected]> | ||
title: 'Update CI files' | ||
body: 'No-Issue' | ||
commit-message: | | ||
Update CI files for ${GITHUB_REF#refs/heads/} | ||
Update CI files | ||
[noissue] | ||
No-Issue | ||
delete-branch: true |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[allowlist] | ||
description = "Our test install exports a test only MINIO ACCESS KEY" | ||
files = [ '''.github/workflows/scripts/install.sh''' ] | ||
files = [ '''.github/workflows/scripts/install.sh''', '''dev/Dockerfile.base''' ] |
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 |
---|---|---|
@@ -1,33 +1,34 @@ | ||
# This config represents the latest values used when running the plugin-template. Any settings that | ||
# were not present before running plugin-template have been added with their default values. | ||
|
||
# generated with [email protected]87-g2136629-dirty | ||
# generated with [email protected]99-gd8b54c6 | ||
|
||
additional_repos: | ||
- name: pulp_ansible | ||
org: pulp | ||
bindings: true | ||
branch: 0.9.0 | ||
- name: pulp_container | ||
org: pulp | ||
bindings: true | ||
branch: 2.7.1 | ||
- name: galaxy-importer | ||
bindings: false | ||
org: ansible | ||
branch: v0.3.4 | ||
- bindings: true | ||
branch: 0.9.0 | ||
name: pulp_ansible | ||
org: pulp | ||
- bindings: true | ||
branch: 2.7.1 | ||
name: pulp_container | ||
org: pulp | ||
- bindings: false | ||
branch: v0.3.4 | ||
name: galaxy-importer | ||
org: ansible | ||
black: false | ||
check_commit_message: false | ||
check_gettext: true | ||
check_manifest: true | ||
check_openapi_schema: true | ||
check_stray_pulpcore_imports: true | ||
core_import_allowed: | ||
- "pulpcore.app.*viewsets" | ||
- "pulpcore\\.app.*admin" | ||
- "ProgressReportSerializer" | ||
cherry_pick_automation: false | ||
ci_trigger: "{pull_request: {branches: ['*']}, push: {branches: ['*']}}" | ||
ci_env: {} | ||
ci_trigger: '{pull_request: {branches: [''*'']}, push: {branches: [''*'']}}' | ||
core_import_allowed: | ||
- pulpcore.app.*viewsets | ||
- pulpcore\.app.*admin | ||
- ProgressReportSerializer | ||
coverage: false | ||
deploy_client_to_pypi: false | ||
deploy_client_to_rubygems: false | ||
|
@@ -38,6 +39,7 @@ docker_fixtures: false | |
docs_test: false | ||
flake8: true | ||
issue_tracker: null | ||
noissue_marker: 'No-Issue' | ||
plugin_app_label: galaxy | ||
plugin_camel: GalaxyNG | ||
plugin_camel_short: Galaxy | ||
|
@@ -48,12 +50,12 @@ plugin_dash_short: galaxy | |
plugin_default_branch: master | ||
plugin_name: galaxy_ng | ||
plugin_snake: galaxy_ng | ||
post_job_template: | ||
post_job_template: | ||
name: update_manifest | ||
path: "galaxy_ng/.github/post-job-template.yml.j2" | ||
path: galaxy_ng/.github/post-job-template.yml.j2 | ||
pre_job_template: | ||
name: check_commit | ||
path: "galaxy_ng/.github/pre-job-template.yml.j2" | ||
path: galaxy_ng/.github/pre-job-template.yml.j2 | ||
publish_docs_to_pulpprojectdotorg: false | ||
pulp_scheme: http | ||
pulp_settings: | ||
|
@@ -62,11 +64,13 @@ pulp_settings: | |
rh_entitlement_required: insights | ||
pulpcore_branch: '3.14' | ||
pulpcore_pip_version_specifier: null | ||
pulpcore_revision: null | ||
pulpprojectdotorg_key_id: null | ||
pydocstyle: true | ||
pypi_username: null | ||
python_version: '3.8' | ||
redmine_project: null | ||
release_email: [email protected] | ||
release_user: ansible | ||
stable_branch: stable | ||
sync_ci: true | ||
|
@@ -80,4 +84,3 @@ travis_notifications: null | |
update_redmine: false | ||
upgrade_range: [] | ||
|
||
|