File tree Expand file tree Collapse file tree 5 files changed +29
-2
lines changed Expand file tree Collapse file tree 5 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ concurrency:
44  group : ${{ github.workflow }}-${{ github.ref }} 
55  cancel-in-progress : true 
66
7+ #  https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
8+ permissions :
9+   contents : read 
10+ 
711on :
812  schedule :
913    - cron : ' 0 10 * * *' 
1620jobs :
1721  ci :
1822    runs-on : ubuntu-latest 
23+     permissions :
24+       #  required to push to gh-pages
25+       contents : write 
1926    strategy :
2027      fail-fast : false 
2128      matrix :
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ concurrency:
44  group : ${{ github.workflow }}-${{ github.ref }} 
55  cancel-in-progress : true 
66
7+ #  https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
8+ permissions :
9+   contents : read 
10+ 
711on :
812  workflow_dispatch :
913  schedule :
1216jobs :
1317  branches :
1418    runs-on : ubuntu-latest 
19+     permissions :
20+       #  required to remove git branch
21+       contents : write 
1522    strategy :
1623      fail-fast : false 
1724      matrix :
Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ concurrency:
44  group : ${{ github.workflow }}-${{ github.ref }} 
55  cancel-in-progress : true 
66
7+ #  https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
8+ permissions :
9+   contents : read 
10+ 
711on :
812  push :
913    branches :
10-       - ' dev ' 
14+       - ' master ' 
1115    paths :
1216      - ' .github/labels.yml' 
1317      - ' .github/workflows/labels.yml' 
1923jobs :
2024  labeler :
2125    runs-on : ubuntu-latest 
26+     permissions :
27+       #  same as global permissions
28+       contents : read 
29+       #  required to update labels
30+       issues : write 
2231    steps :
2332      -
2433        name : Checkout 
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ concurrency:
44  group : ${{ github.workflow }}-${{ github.ref }} 
55  cancel-in-progress : true 
66
7+ #  https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
8+ permissions :
9+   contents : read 
10+ 
711on :
812  push :
913    branches :
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2019-2024  CrazyMax
3+ Copyright (c) 2019-2025  CrazyMax
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments