Skip to content

Commit

Permalink
merge master into devin.ford/WEB-4186
Browse files Browse the repository at this point in the history
  • Loading branch information
devindford committed Oct 27, 2023
2 parents 610d353 + c23efce commit a671681
Show file tree
Hide file tree
Showing 595 changed files with 3,884 additions and 3,072 deletions.
5 changes: 5 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ badunit
bak
barfoo
barieom
basearch
baseof
basevalue
baskinc
Expand Down Expand Up @@ -450,6 +451,8 @@ gogoproto
goldberg
goldmark
GPB
gpgcheck
gpgkey
gqlgen
graphqlconfig
grault
Expand Down Expand Up @@ -575,6 +578,7 @@ kernelmode
keybase
keyclock
keyid
keyring
keyxxxxx
khvzak
kib
Expand Down Expand Up @@ -635,6 +639,7 @@ lukesteensen
macports
MAINPID
majorly
makecache
MAKECMDGOALS
Makefiles
markability
Expand Down
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ updates:
csv:
patterns:
- "csv*"
futures:
patterns:
- "futures"
- "futures-util"
phf:
patterns:
- "phf*"
Expand Down
1 change: 0 additions & 1 deletion .github/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ scopes:
- clickhouse sink # Anything `clickhouse` sink related
- console sink # Anything `console` sink related
- databend sink # Anything `databend` sink related
- datadog_archives sink # Anything `datadog_archives` sink related
- datadog_events sink # Anything `datadog_events` sink related
- datadog_logs sink # Anything `datadog_logs` sink related
- datadog_metrics sink # Anything `datadog_metrics` sink related
Expand Down
19 changes: 18 additions & 1 deletion .github/workflows/gardener_issue_comment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Gardener Issue Comment
#
# This workflow moves GH issues from the Gardener board's "Blocked / Waiting" column
# to the "Triage", so that the Gardener can assess the issue in light of new information.
# to "Triage", when a comment is posted on an issue from a non-team member
# so that the Gardener can assess the issue in light of new information.

name: Gardener Issue Comment

Expand All @@ -15,7 +16,23 @@ jobs:
runs-on: ubuntu-latest
if: contains(github.event.issue.url, 'issues')
steps:
- name: Generate authentication token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
app_id: ${{ secrets.GH_APP_DATADOG_VECTOR_CI_APP_ID }}
private_key: ${{ secrets.GH_APP_DATADOG_VECTOR_CI_APP_PRIVATE_KEY }}

- name: Get PR comment author
id: comment
uses: tspascoal/get-user-teams-membership@v3
with:
username: ${{ github.actor }}
team: 'Vector'
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}

- name: Move issue back to Triage if status is Blocked/Waiting
if: steps.comment.outputs.isTeamMember == 'false'
env:
GH_TOKEN: ${{ secrets.GH_PROJECT_PAT }}
run: |
Expand Down
Loading

0 comments on commit a671681

Please sign in to comment.