Mention explicitly that Durable Objects do *not* incur charges when idle and hibernateable #170
This file contains hidden or 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: Issue - Label and assign | |
| # **What it does**: Labels Issues with associated products. Updates assignees to match our CODEOWNERS file. | |
| # **Why we have it**: Easier scanning of repo PRs && backend reporting on our team's work. | |
| # **Who does it impact**: PCX team | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| compile: | |
| name: Label and assign | |
| permissions: | |
| issues: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/issue-label-assign | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |