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
6 changes: 1 addition & 5 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
---
name: OpenTelemetry Acceptance Tests

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
on: [pull_request]

permissions: {}

Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
---
name: Build

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
on: [pull_request]

permissions: {}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-rest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Acceptance Tests
name: Lint What Super Linter Can't

on: [pull_request]

Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/native-tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
---
name: GraalVM Native Tests

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
on: [pull_request]

permissions: {}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions: {}

steps:
- name: Debug gpg key - remove after debugging
- name: Debug gpg key
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
run: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
---
name: Lint

on:
pull_request:
on: [pull_request]

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-release-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Build
name: Test Build Release

on:
push:
Expand Down
11 changes: 11 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,14 @@
3. Click on "Generate release notes" to auto-generate the release notes based on the commits since
the last release.
4. Click on "Publish release".

## If the GPG key expired

1. Generate a new key:
<https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key#generating-a-gpg-key> <!-- editorconfig-checker-disable-line -->
2. BUT use `gpg --armor --export-secret-keys YOUR_ID` to
export ([docs](https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#gpg))
3. Update the
passphrase: <https://github.com/prometheus/client_java/settings/secrets/actions/GPG_SIGNING_PASSPHRASE> <!-- editorconfig-checker-disable-line -->
4. Update the GPG
key: <https://github.com/prometheus/client_java/settings/secrets/actions/GPG_SIGNING_KEY>