alpha
attribute for <input type="color">
#128
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
# This GitHub Actions workflow identifies web features in new and edited issues. | |
# Identified features are posted as a comment on the issue. | |
name: Identify Web Features in Issues | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '22' | |
- name: Run identification script | |
run: | | |
cd scripts | |
npm install | |
node identify-web-features.js -n ${{ github.event.issue.number }} -r ${{ github.repository }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |