ref(redis): add async redis client that uses the same pattern as sync redis #13930
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: "Changelog" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited, ready_for_review] | |
jobs: | |
build: | |
name: Changelogs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
script: | | |
const changelog = require('./.github/actions/changelog/index.js') | |
await changelog({github, context, core}) |