File tree Expand file tree Collapse file tree 4 files changed +21
-12
lines changed Expand file tree Collapse file tree 4 files changed +21
-12
lines changed Original file line number Diff line number Diff line change 2222    steps :
2323      - name : Check if PR is from a fork 
2424        #  This step checks if the pull request is from a fork
25-         run : echo "IS_FORK=$(if [ '${{ github.event.pull_request.head.repo.full_name }}' != '${{ github.repository }}' ]; then echo 'true'; else echo 'false'; fi)" >> $GITHUB_ENV 
25+         run : | 
26+           if [ "${{ github.event_name }}" = "pull_request" ]; then 
27+             if [ '${{ github.event.pull_request.head.repo.full_name }}' != '${{ github.repository }}' ]; then 
28+               echo "IS_FORK=true" >> $GITHUB_ENV 
29+             else 
30+               echo "IS_FORK=false" >> $GITHUB_ENV 
31+             fi 
32+           else 
33+             echo "IS_FORK=false" >> $GITHUB_ENV 
34+           fi 
2635
2736       - name : Checkout 
2837        #  This step checks out the repository
Original file line number Diff line number Diff line change 11#  This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22
3- #  We start from the Debian 'bookworm ' image dated 2023-11-20 .
4- FROM  debian:bookworm-20250908 -slim as prepare-stage
3+ #  We start from the Debian 'trixie ' image.
4+ FROM  debian:trixie-20250610 -slim as prepare-stage
55
66#  Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77COPY  *sh /usr/local/bin/
Original file line number Diff line number Diff line change 11#  This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22
3- #  We start from the Debian 'bookworm ' image dated 2023-11-20 .
4- FROM  debian:bookworm -20250929 as prepare-stage
3+ #  We start from the Debian 'trixie ' image.
4+ FROM  debian:trixie -20250929 as prepare-stage
55
66#  Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77COPY  *sh /usr/local/bin/
Original file line number Diff line number Diff line change @@ -13,16 +13,16 @@ scms:
1313      branch : " {{ .github.branch }}" 
1414
1515sources :
16-   bookwormLatestVersion :
16+   trixieLatestVersion :
1717    kind : dockerimage 
18-     name : " Get the latest Debian Bookworm  Linux version" 
18+     name : " Get the latest Debian Trixie  Linux version" 
1919    spec :
2020      image : " debian" 
21-       tagfilter : " bookworm -*" 
21+       tagfilter : " trixie -*" 
2222      versionfilter :
2323        kind : regex 
2424        pattern : >- 
25-           bookworm -\d+$ 
25+           trixie -\d+$ 
2626
2727targets :
2828  debian :
@@ -34,14 +34,14 @@ targets:
3434      instruction :
3535        keyword : FROM 
3636        matcher : debian 
37-     sourceid : bookwormLatestVersion 
37+     sourceid : trixieLatestVersion 
3838
3939actions :
4040  default :
4141    kind : github/pullrequest 
4242    scmid : default 
43-     title : Bump Debian Bookworm  Linux version to {{ source "bookwormLatestVersion " }} 
43+     title : Bump Debian Trixie  Linux version to {{ source "trixieLatestVersion " }} 
4444    spec :
4545      labels :
4646        - dependencies 
47-         - debian-bookworm  
47+         - debian-trixie  
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments