Bug: Incorrect parameter order in typing.cast() causes intermittent errors in cosine_of_solar_zenith_angle #178
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: Add Issues to xclim Project | |
on: | |
issues: | |
types: | |
- opened | |
permissions: | |
contents: read | |
jobs: | |
add-to-project: | |
name: Add Issue to xclim Project | |
runs-on: ubuntu-latest | |
permissions: | |
repository-projects: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
- name: Generate App Token | |
id: token_generator | |
uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1.11.6 | |
with: | |
app-id: ${{ secrets.OURANOS_HELPER_BOT_ID }} | |
private-key: ${{ secrets.OURANOS_HELPER_BOT_KEY }} | |
- name: Add Issue to xclim Project | |
uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 | |
with: | |
project-url: https://github.com/orgs/Ouranosinc/projects/6 | |
github-token: ${{ steps.token_generator.outputs.token }} |