[MLOB] add LLM obs configs #52
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: Comment on Submodule Update | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'release/**' | |
paths: | |
- 'dd-java-agent/agent-jmxfetch/integrations-core' | |
jobs: | |
comment_on_submodule_update: | |
permissions: | |
issues: write # Required to create a comment on the pull request | |
pull-requests: write # Required to create a comment on the pull request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Post comment on submodule update | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # 7.0.1 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Hi! 👋 Looks like you updated a Git Submodule.\n' + | |
'If this was not intentional please make sure to:\n\n' + | |
'* Update the submodule to the latest commit on the master branch using the `git submodule update` command,\n' + | |
'* Check you [properly set up your environment for contributing](https://github.com/DataDog/dd-trace-java/blob/master/CONTRIBUTING.md#git-submodule-setup).' | |
}) |