[READ-ONLY] Mirror of https://github.com/jmrplens/FFT2octave. Matlab. Filter FFT data to octave-band and fractional octave-band.
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: add auto-assign workflow

authored by

José M. Requena Plens and committed by
GitHub
(Jun 29, 2026, 1:13 AM +0200) 11737b65 73b17d6a

+22
+22
.github/workflows/auto-assign.yml
··· 1 + name: Auto-assign 2 + 3 + on: 4 + issues: 5 + types: [opened] 6 + pull_request: 7 + types: [opened] 8 + 9 + jobs: 10 + assign: 11 + runs-on: ubuntu-latest 12 + permissions: 13 + issues: write 14 + pull-requests: write 15 + steps: 16 + - name: Assign to jmrplens 17 + env: 18 + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} 19 + REPO: ${{ github.repository }} 20 + NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }} 21 + run: | 22 + gh api --method POST -H "Accept: application/vnd.github+json" /repos/$REPO/issues/$NUMBER/assignees -f assignees[]=jmrplens