# The `on:` key is the single most famous YAML-in-CI trap. Under the YAML 1.1 resolver
# (PyYAML, SnakeYAML's default, Ruby Psych) the bare word `on` is a BOOLEAN, so a round-trip
# through such a loader turns this document's trigger block into the key `True`. YAML 1.2's
# core schema resolves only true/false, and keeps `on` as a string.
name: Norway-adjacent trigger keys

on:
  schedule:
    - cron: "0 3 * * 1"
  workflow_dispatch:

permissions:
  contents: read

jobs:
  probe:
    runs-on: ubuntu-latest
    steps:
      - name: Values that YAML 1.1 also coerces
        run: echo "see the env block"
        env:
          NORWAY: NO
          YES_WORD: yes
          OFF_WORD: off
          QUOTED_NORWAY: "NO"
