Select Git revision
ipaservicedelegationtarget.py
-
Rafael Guterres Jeffman authored
Recent pylint versions warn against the use of an 'else' in a 'try-except' block if using a 'return' on the 'except' part is is the idom used by ansible-freeipa when retrieving IPA data objects. This change removes the usage of the 'else:' in such cases, and modify the templates so that new modules do not have the same issue in the future.
Rafael Guterres Jeffman authoredRecent pylint versions warn against the use of an 'else' in a 'try-except' block if using a 'return' on the 'except' part is is the idom used by ansible-freeipa when retrieving IPA data objects. This change removes the usage of the 'else:' in such cases, and modify the templates so that new modules do not have the same issue in the future.
push-rebase.yaml 768 B
name: Push [rebase]
"on":
push:
branches:
- main
concurrency:
group: push-rebase-main
cancel-in-progress: true
jobs:
rebase:
name: Push [rebase]
runs-on: ubuntu-latest
steps:
- name: "Rebase all Dependabot's pull requests on every push to the main branch"
uses: bbeesley/gha-auto-dependabot-rebase@v1.5.137
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
- name: "Rebase all users' pull requests on release push to the main branch"
uses: peter-evans/rebase@v3.1.0
with:
base: main
exclude-drafts: true
exclude-labels: |
no-rebase
dependencies
if: "${{ startsWith(github.event.head_commit.message, 'docs: update changelog for ') }}"