Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/plugin_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,12 @@ jobs:
# Create pull request using gh command
gh pr create --title "chore(jenkins): Updates Jenkins plugins" --body "This pull request updates the Jenkins plugins listed in \`plugins.txt\`." --base "$BASE_BRANCH" --head "$BRANCH_NAME"
fi

- name: Capture Jenkins logs on failure
if: failure()
run: |
echo "=== Container status ==="
docker ps -a
echo "=== Jenkins controller logs ==="
CTRL=$(docker ps -a --format "{{.Names}}" | grep -m1 controller || true)
[ -n "$CTRL" ] && docker logs "$CTRL" 2>&1 | tail -200 || echo "No controller container found"
12 changes: 1 addition & 11 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
# pull_request_target:
# types: [opened, reopened, synchronize]
workflow_dispatch:

permissions:
contents: read
Expand Down
3 changes: 1 addition & 2 deletions dockerfiles/jenkins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jenkins:
password: "admin"
authorizationStrategy: loggedInUsersCanDoAnything
crumbIssuer:
standard:
excludeClientIPFromCrumb: false
standard: {}
nodes:
- permanent:
labelString: "docker jenkins agent"
Expand Down
Loading