Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: plengauer/autorerun
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.20.0
Choose a base ref
...
head repository: plengauer/autorerun
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.21.0
Choose a head ref
  • 12 commits
  • 8 files changed
  • 3 contributors

Commits on Mar 10, 2025

  1. Added observability

    plengauer authored Mar 10, 2025
    Copy the full SHA
    07d6175 View commit details
  2. Added observability

    plengauer authored Mar 10, 2025

    Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    8a372a1 View commit details
  3. Added observability

    plengauer authored Mar 10, 2025
    Copy the full SHA
    3faeb62 View commit details
  4. Added observability

    plengauer authored Mar 10, 2025
    Copy the full SHA
    c734ecb View commit details
  5. Added observability

    plengauer authored Mar 10, 2025
    Copy the full SHA
    7107e51 View commit details
  6. Added observability

    plengauer authored Mar 10, 2025
    Copy the full SHA
    b36eb38 View commit details

Commits on Mar 16, 2025

  1. Update plengauer/opentelemetry-bash action to v5.8.2 (#41)

    Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
    actions-bot-pl and renovate-bot authored Mar 16, 2025
    Copy the full SHA
    3f2ccb2 View commit details

Commits on Mar 28, 2025

  1. Fix OpenTelemetry version

    plengauer authored Mar 28, 2025
    Copy the full SHA
    9329376 View commit details

Commits on Mar 30, 2025

  1. Update renovatebot/github-action action to v41.0.17 (#42)

    Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
    actions-bot-pl and renovate-bot authored Mar 30, 2025
    Copy the full SHA
    ab54199 View commit details
  2. Update plengauer/opentelemetry-bash action to v5.10.1 (#43)

    Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
    actions-bot-pl and renovate-bot authored Mar 30, 2025
    Copy the full SHA
    5baa793 View commit details
  3. Added new pattern

    plengauer authored Mar 30, 2025
    Copy the full SHA
    0cc1c61 View commit details

Commits on Mar 31, 2025

  1. Automatic Version Bump (#44)

    Co-authored-by: plengauer <100447901+plengauer@users.noreply.github.com>
    actions-bot-pl and plengauer authored Mar 31, 2025
    Copy the full SHA
    8f6c69b View commit details
6 changes: 6 additions & 0 deletions .github/workflows/autoapprove.yaml
Original file line number Diff line number Diff line change
@@ -12,6 +12,12 @@ jobs:
permissions:
pull-requests: write
steps:
- uses: plengauer/opentelemetry-bash/actions/instrument/job@v5.10.1
with:
secrets_to_redact: '${{ toJSON(secrets) }}'
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
- uses: plengauer/autoapprove@v0.1.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions .github/workflows/autorerun.yaml
Original file line number Diff line number Diff line change
@@ -12,6 +12,12 @@ jobs:
rerun:
runs-on: ubuntu-latest
steps:
- uses: plengauer/opentelemetry-bash/actions/instrument/job@v5.10.1
with:
secrets_to_redact: '${{ toJSON(secrets) }}'
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
- run: echo "$GITHUB_EVENT_NAME"
- run: echo "$GITHUB_EVENT_PATH"
- run: cat "$GITHUB_EVENT_PATH"
10 changes: 8 additions & 2 deletions .github/workflows/autoversion.yaml
Original file line number Diff line number Diff line change
@@ -3,13 +3,19 @@ name: Autoversion
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1' # TODO adjust schedule
- cron: '0 0 * * 1'

jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: plengauer/opentelemetry-bash/actions/instrument/job@v5.10.1
with:
secrets_to_redact: '${{ toJSON(secrets) }}'
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
- uses: plengauer/autoversion@v0.17.6
with:
github_token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
openai_token: ${{ secrets.OPENAI_TOKEN }} # TODO remove if no token is available
openai_token: ${{ secrets.OPENAI_TOKEN }}
16 changes: 16 additions & 0 deletions .github/workflows/observability.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: OpenTelemetry

on:
workflow_run:
workflows: ['Renovate', 'Autoversion', 'Autoapprove', 'Autorerun', 'Release' ]
types:
- completed

jobs:
export:
runs-on: ubuntu-latest
steps:
- uses: plengauer/opentelemetry-bash/actions/instrument/workflow@v5.10.1
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -9,6 +9,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: plengauer/opentelemetry-bash/actions/instrument/job@v5.10.1
with:
secrets_to_redact: '${{ toJSON(secrets) }}'
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
- run: |
[ "$GITHUB_RUN_ATTEMPT" = 1 ] && echo 429 Too Many Requests '(simulated)' || true
@@ -18,6 +24,12 @@ jobs:
permissions:
contents: write
steps:
- uses: plengauer/opentelemetry-bash/actions/instrument/job@v5.10.1
with:
secrets_to_redact: '${{ toJSON(secrets) }}'
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
- uses: actions/checkout@v4
- run: echo "version=$(cat VERSION)" >> "$GITHUB_OUTPUT"
id: version
8 changes: 7 additions & 1 deletion .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -12,7 +12,13 @@ jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: renovatebot/github-action@v41.0.14
- uses: plengauer/opentelemetry-bash/actions/instrument/job@v5.10.1
with:
secrets_to_redact: '${{ toJSON(secrets) }}'
env:
OTEL_EXPORTER_OTLP_ENDPOINT: '${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}'
OTEL_EXPORTER_OTLP_HEADERS: '${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}'
- uses: renovatebot/github-action@v41.0.17
env:
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_ONBOARDING_CONFIG_FILE_NAME: .github/renovate.json
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.0
0.21.0
1 change: 1 addition & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@ runs:
error 403: server failed to authenticate the request\. make sure the value of authorization header is formed correctly including the signature\.
\\wsl\.exe --update.*forbidden \(403\)
solution .*: downgrade of .* to .*
is temporarily unaccessible
docker: error response from daemon: failed to create task for container: failed to create shim task: oci runtime create failed: runc create failed: unable to start container process: unable to apply cgroup configuration:
cannot connect to the docker daemon at unix:///var/run/docker\.sock. is the docker daemon running' > /dev/null
}