Calcite version 3.0.2 hides displayed text on popup actions in popup action buttons. See codepen example #372
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: Track Milestone Estimates | |
on: | |
workflow_dispatch: | |
issues: | |
types: [closed] | |
milestone: | |
types: [closed] | |
jobs: | |
estimates: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create estimates data | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/trackMilestoneEstimates.js') | |
await action({github, context, core}) | |
- name: Upload estimates data | |
uses: actions/upload-artifact@v4 | |
with: | |
name: milestone-estimates | |
path: milestone-estimates.* |