-
Notifications
You must be signed in to change notification settings - Fork 8
41 lines (33 loc) · 1.14 KB
/
php_tracer_update_version.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Update Version for the PHP 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 php
- name: Create Pull Request
id: pr
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: "php-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 }}"