Skip to content

build(deps): Bump elastic-apm to 6.24.1 (#510) #171

build(deps): Bump elastic-apm to 6.24.1 (#510)

build(deps): Bump elastic-apm to 6.24.1 (#510) #171

Workflow file for this run

---
# Creates a new GitHub release if the version in requirements.txt changed in the main branch and
# if the tag does not exist yet.
name: create-tag
on:
push:
branches:
- main
paths:
- requirements.txt
permissions:
contents: read
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # also fetch tags
- name: Get token
id: get_token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.OBS_AUTOMATION_APP_ID }}
private-key: ${{ secrets.OBS_AUTOMATION_APP_PEM }}
permission-contents: write
- run: make create-release
env:
GH_TOKEN: ${{ steps.get_token.outputs.token }}