Update Version for the Java Tracer #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Version for the Java Tracer | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 14 * * *' # 2:00 PM UTC which is morning in New York | |
jobs: | |
bump_version: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
packages: write | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Modify build-packages | |
id: version | |
run: | | |
python .github/workflows/datadog_wrapper_tracer_update.py --tracer java | |
- name: Create Pull Request | |
id: pr | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: "java-tracer-version-bump" | |
commit-message: "${{steps.version.outputs.pr_title}}" | |
delete-branch: true | |
title: "${{steps.version.outputs.pr_title}}" | |
body: "${{steps.version.outputs.pr_body}}" | |
- name: Display output | |
run: | | |
echo "Pull Request Number - ${{ steps.pr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.pr.outputs.pull-request-url }}" | |