-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
14 changed files
with
321 additions
and
230 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.08.26-250-gf4315cf | ||
2021.08.26-265-gbdd41dd |
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,37 @@ | ||
# WARNING: DO NOT EDIT! | ||
# | ||
# This file was generated by plugin_template, and is managed by it. Please use | ||
# './plugin-template --github pulp_container' to update this file. | ||
# | ||
# For more info visit https://github.com/pulp/plugin_template | ||
|
||
--- | ||
name: Build | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
- name: Install python dependencies | ||
run: | | ||
echo ::group::PYDEPS | ||
pip install packaging wheel | ||
echo ::endgroup:: | ||
- name: Build package | ||
run: python3 setup.py sdist bdist_wheel --python-tag py3 | ||
- name: 'Upload Package whl' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: plugin_package | ||
path: dist/ | ||
if-no-files-found: error | ||
retention-days: 5 |
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,49 @@ | ||
# WARNING: DO NOT EDIT! | ||
# | ||
# This file was generated by plugin_template, and is managed by it. Please use | ||
# './plugin-template --github pulp_container' to update this file. | ||
# | ||
# For more info visit https://github.com/pulp/plugin_template | ||
|
||
--- | ||
name: Lint | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
# lint_requirements contains tools needed for flake8, etc. | ||
- name: Install requirements | ||
run: pip3 install -r lint_requirements.txt | ||
|
||
# run black separately from flake8 to get a diff | ||
- name: Run black | ||
run: | | ||
black --version | ||
black --check --diff . | ||
# Lint code. | ||
- name: Run flake8 | ||
run: flake8 | ||
|
||
- name: Run extra lint checks | ||
run: "[ ! -x .ci/scripts/extra_linting.sh ] || .ci/scripts/extra_linting.sh" | ||
|
||
# check for any files unintentionally left out of MANIFEST.in | ||
- name: Check manifest | ||
run: check-manifest | ||
|
||
- name: Check for pulpcore imports outside of pulpcore.plugin | ||
run: sh .ci/scripts/check_pulpcore_imports.sh | ||
|
||
- name: Check for gettext problems | ||
run: sh .ci/scripts/check_gettext.sh |
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,62 @@ | ||
# WARNING: DO NOT EDIT! | ||
# | ||
# This file was generated by plugin_template, and is managed by it. Please use | ||
# './plugin-template --github pulp_container' to update this file. | ||
# | ||
# For more info visit https://github.com/pulp/plugin_template | ||
|
||
--- | ||
name: Container PR static checks | ||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
# This workflow runs with elevated permissions. | ||
# Do not even think about running a single bit of code from the PR. | ||
# Static analysis should be fine however. | ||
|
||
concurrency: | ||
group: ${{ github.ref_name }}-${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
single_commit: | ||
runs-on: ubuntu-latest | ||
name: Label multiple commit PR | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Commit Count Check | ||
run: | | ||
git fetch origin ${{ github.event.pull_request.head.sha }} | ||
echo "COMMIT_COUNT=$(git log --oneline --no-merges origin/${{ github.base_ref }}..${{ github.event.pull_request.head.sha }} | wc -l)" >> "$GITHUB_ENV" | ||
- uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const labelName = "multi-commit"; | ||
const { COMMIT_COUNT } = process.env; | ||
if (COMMIT_COUNT == 1) | ||
{ | ||
try { | ||
await github.rest.issues.removeLabel({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
name: labelName, | ||
}); | ||
} catch(err) { | ||
} | ||
} | ||
else | ||
{ | ||
await github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: [labelName], | ||
}); | ||
} |
Oops, something went wrong.